Skip to main content

contextmanager for managing `selenium` chrome sessions with caching.

Project description

chromesession

PyPI - Python Version PyPI - Version PyPI - Downloads PyPI - License GitHub - Page pre-commit


chromesession is a Python package that provides a convenient contextmanager for managing selenium chrome sessions.

In addition, a CachedSession is provided to directly cache the driver responses.

Installation

pip install chromesession

To use the chromesession.chrome contextmanager to use selenium, the chromedriver must be installed the system.

Alternatively, you can install the latest chromedriver as extra.

pip install chromesession[driver]

Examples

Cache the specified URLs by fetching them via Selenium and saving the responses.

from pathlib import Path

from chromesession import CachedSession, chrome


def caching(*urls: str) -> Path:
    """
    Cache the specified URLs by fetching them via Selenium and saving the responses.
    """
    cachfile = "caching.sqlite"

    with CachedSession(cache_name=cachfile) as session:
        with chrome(verbose=False) as driver:
            for url in urls:
                if url in session:
                    print(f"{url=} already cached.")
                    continue

                try:
                    driver.get(url)
                    session.save_driver(driver)
                except Exception as e:
                    print(f"{url=} failed to cache: {e}", exc_info=True)
                else:
                    print(f"{url=} saved in cache.")

    return Path(cachfile)


if __name__ == "__main__":

    caching("https://example.com/", "https://example.com/")

Dependencies

PyPI - requests-cache PyPI - responses PyPI - selenium

Extras

Install optional dependencies using extras.

extra installation dependency
all pip install chromesession[all] Install all extras.
driver pip install chromesession[driver] PyPI - chromedrive-py
bs4 pip install chromesession[bs4] PyPI - beautifulsoup4

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chromesession-0.1.0.tar.gz (6.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

chromesession-0.1.0-py3-none-any.whl (7.7 kB view details)

Uploaded Python 3

File details

Details for the file chromesession-0.1.0.tar.gz.

File metadata

  • Download URL: chromesession-0.1.0.tar.gz
  • Upload date:
  • Size: 6.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.13.2 Linux/6.8.0-1021-azure

File hashes

Hashes for chromesession-0.1.0.tar.gz
Algorithm Hash digest
SHA256 89ca3d6db4b77b2d68cbadcd49a906abdddf8cd96a0f0050cd2e5102956dc76c
MD5 415b7a54c5c48b45fa91af70608a24b3
BLAKE2b-256 1268358bf83ad1eb05feb963915e7c55494d65baeb137de17d70c4ae428e6dcb

See more details on using hashes here.

File details

Details for the file chromesession-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: chromesession-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 7.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.5 CPython/3.13.2 Linux/6.8.0-1021-azure

File hashes

Hashes for chromesession-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7e165e9d996cf21d45a9f942e8a16329bd96db82fa0f5f212ea9b4c7f893fc86
MD5 298dea6ffca9c9e6effdf1aaa3fda91b
BLAKE2b-256 630690677f25f4b3fa2f3d1e7038e532afe157aaa93eb677e26fc9a59b1c491d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page