Skip to content

Latest commit

 

History

History
183 lines (115 loc) · 12.2 KB

File metadata and controls

183 lines (115 loc) · 12.2 KB

Contributing

Bug reports and pull requests are welcome on GitHub. Run commands from the repository root.

Development setup

Use Python 3.13 to work on the package and its documentation. The SDK CI also tests Python 3.8 through 3.14. Create a virtual environment and install the package with its test and documentation dependencies:

uv venv --python 3.13
uv pip install -e '.[test,docs]'

The editable install uses the Python files in your checkout, so source changes take effect without reinstalling the package.

Activate the environment on macOS or Linux:

source .venv/bin/activate

On Windows PowerShell:

.\.venv\Scripts\Activate.ps1

The commands below use python from that environment.

Testing

Checks that need no API key

These tests cover response parsing, image uploads with simulated responses, timeouts, exceptions, documentation syntax, and the example runner:

python -m pytest tests/test_output_formats.py tests/test_image_upload.py tests/test_timeout.py tests/test_exceptions.py tests/test_docs_examples.py tests/test_docs_example_runner.py -k 'not live' -q

The file list limits this command to tests that make no external requests. Applying -k 'not live' to the entire suite is not enough to run offline: some SDK integration tests do not have live in their names.

SDK integration tests

Set API_KEY in your shell or editor's run configuration before running integration tests. Documentation examples also accept SERPAPI_KEY, but the shared SDK fixtures require API_KEY. If you already have SERPAPI_KEY set, copy it to API_KEY in the same shell:

export API_KEY="$SERPAPI_KEY"

In PowerShell, use $env:API_KEY = $env:SERPAPI_KEY. Keep real keys out of source files and commits.

To match the test selection in the SDK CI workflow:

python -m pytest tests --ignore-glob='tests/test_docs_*.py' -k 'not example' -q

This includes live account, location, search, and pagination checks. To run every discovered test, including the standalone engine examples and documentation examples:

python -m pytest -q

Both commands make real SerpApi requests. The full suite can use more searches than a test run limited to the files you changed. PR CI also runs the standalone engine examples on Python 3.14. Documentation tests run in the package and documentation release workflows on release tags, and in manual documentation runs on master.

Testing documentation examples

The tests discover Python code blocks in the README and all Markdown pages under docs/. They run each page as a separate script against SerpApi, including the multiprocessing example's worker processes. The Lens upload examples use the repository's PNG icon as image.png. Each page has a five-minute limit, and HTTP errors or JSON responses containing an error fail the check even if the example catches the exception.

With SERPAPI_KEY or API_KEY set in your environment, run:

python -m pytest tests/test_docs_examples.py --require-docs-key -q

The --require-docs-key option fails if neither key is set. Without that option, local runs skip live tests when no key is available. To check syntax and the test runner without making API calls:

python -m pytest tests/test_docs_examples.py tests/test_docs_example_runner.py -k 'not live' -q

Code blocks marked with docs-test: skip are checked for syntax but not executed. These cover the old google-search-results package and examples that require private proxy or certificate settings, or disable TLS verification. Each marker includes its reason.

Testing documentation publishing

Run the publishing tests locally with:

python -m pytest tests/test_docs_publishing.py -q

These tests use simulated RTD responses to check outgoing HTTP requests, CI event and commit checks, version selection, polling, and cleanup after failures. They need no API keys and do not publish documentation. In CI, they run only in the Documentation workflow on Python 3.13, before the documentation build and publication. The SDK and PyPI release workflows exclude this file. RTD checks the actual checkout with scripts.check_docs_revision before and after building, without rerunning the publishing tests.

Running a single test or example

Run one test file while working on that part of the package:

python -m pytest tests/test_output_formats.py -q

To list documentation test IDs without running their examples:

python -m pytest tests/test_docs_examples.py --collect-only -q

For example, run only the Google Lens upload and search page with:

python -m pytest 'tests/test_docs_examples.py::test_documentation_examples_live[docs/examples/google-lens-image-upload.md]' --require-docs-key -q

Use -x -vv in place of -q to stop at the first failure and show more detail. A syntax failure points to a page and block number. A live failure can come from the example code, an invalid key, exhausted quota, or an upstream API error; inspect the reported engine and error before changing the example.

When adding a documentation example, use a fenced block labelled python. Blocks on the same page execute in order and share variables. Avoid hard-coded dates that expire. Use a docs-test: skip marker with a reason only when a block cannot run in the test environment, such as one requiring a user's proxy or certificate.

Building the documentation locally

The documentation uses Sphinx with MyST for Markdown pages and the Read the Docs theme. The development setup above includes its dependencies. Build and serve the HTML site with:

python -m sphinx -M html docs docs/_build -W --keep-going
python -m http.server 8000 --bind 127.0.0.1 --directory docs/_build/html

Open the local documentation. After editing a page, rerun the Sphinx build command and refresh your browser. Check the affected page, its code blocks, and the sidebar links. Press Ctrl+C to stop the server.

Sphinx discovers public APIs with autodoc and reads their docstrings without running the search examples. Sidebar order comes from the toctrees in docs/index.md, so documentation filenames do not need numeric prefixes. The -W option makes warnings fail the build.

CI also builds EPUB. Check it locally with:

python -m sphinx -M epub docs docs/_build -W --keep-going

Building the package

Build the source distribution and wheel with:

uv build

The files are written to dist/. Documentation sources, this guide, and the logo assets are included in the source distribution (.tar.gz) so contributors can build the docs from a source release. The wheel contains only the serpapi library and its package metadata. Generated docs and documentation dependencies are not part of a normal installation.

Documentation publishing

The documentation workflow runs the live examples before building HTML and EPUB when a v* release tag is pushed, or when master or a release tag is selected for a manual run. It does not run on branch pushes or pull requests.

After the live examples and documentation build pass, the same workflow publishes to Read the Docs for the selected ref. A manual run on master updates latest without triggering the package release workflow or changing the package version. The publishing job uses the docs GitHub environment and its RTD_API_TOKEN secret. The SerpApi key stays in GitHub as the existing API_KEY repository or organization secret.

The workflow syncs RTD versions, activates the requested version if needed, and waits for the build to finish. latest tracks master. A release tag has its own version and also updates stable when RTD identifies it as the highest stable release. RTD still builds the site from the repository using .readthedocs.yaml; it does not receive the HTML artifact from GitHub. Documentation publishing runs independently of the PyPI release workflow.

Before requesting a build, the workflow creates a temporary RTD environment variable named DOCS_CI_REVISION. It contains the tested commit, the permitted versions, and an expiration time. RTD checks this record against its checkout before and after the Sphinx build. A missing, expired, or different revision stops publication. RTD needs no SerpApi key. The workflow removes the temporary record after publishing, including when a build fails. Publishing jobs run one at a time so they cannot overwrite each other's revision record.

Maintainer setup

Maintainers can configure the existing RTD project and GitHub environment with these steps:

  1. In RTD Settings, set Connected repository to No connected repository and keep Repository URL set to https://github.com/serpapi/serpapi-python.git. Set Default branch to master and the configuration file path to .readthedocs.yaml. The public repository URL lets RTD clone the source without receiving GitHub push events through the GitHub App.
  2. Under RTD Integrations, remove incoming GitHub webhook integrations for this project. If an older RTD webhook is also listed in the GitHub repository's Settings > Webhooks, disable or remove that webhook. Do not remove integrations for other projects.
  3. Under RTD Automation Rules, remove rules that activate new versions or change the default version. The workflow handles release activation. Under Settings > Pull request builds, turn off Build pull requests for this project. GitHub Actions runs the existing SDK and engine example tests on PRs.
  4. Under RTD Environment Variables, remove API_KEY or SERPAPI_KEY if you added either for docs tests. Do not add the RTD API token here. The workflow manages DOCS_CI_REVISION automatically.
  5. Keep latest active in Versions and use it as the default documentation version during this migration. Existing release tags contain their original docs and build configuration. After the first release containing these changes builds successfully, you can choose stable as the default version.
  6. Create an RTD API token in your RTD profile settings, using an account that maintains the serpapi-python project. In GitHub, open the repository's Settings > Environments, create an environment named docs, and add an environment secret named RTD_API_TOKEN with that value. Under Deployment branches and tags, select Selected branches and tags and add a Branch rule for master and a Tag rule for v*. Leave required reviewers and wait timers disabled if publishing should run without a manual approval.
  7. Merge the changes to master, then push the version tag for the release. In GitHub Actions > Documentation, follow Live documentation examples, Build Sphinx documentation, and Publish Read the Docs. The publishing log links to the RTD build. To retry publishing, run the Documentation workflow on the intended release tag, or select master to publish updated latest docs without a new package release. A manual run on any other branch skips the documentation jobs.

Use GitHub Actions to request builds after this setup. A manual RTD build has no CI revision record and will fail the revision check. If a branch or tag moves between testing and the RTD checkout, rerun the workflow for its current commit. Pushing a v* tag also starts the PyPI release workflow, so use an actual package release to test release documentation.

See the RTD build API, Git integration settings, and GitHub environment settings for the platform setup details.

Publishing a new release

  1. Update the version in serpapi/__version__.py.
  2. Push a tag for that version. The release pipeline runs automatically:
    git tag v1.2.3
    git push origin v1.2.3
    This triggers the release workflow, which tests, builds, and publishes to PyPI, then smoke-tests the published package.

Required secret: API_KEY (used by the live documentation examples and the published-package smoke test).