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 - Pytest GitHub - Page GitHub - Release codecov 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 context manager with selenium, the chromedriver must be installed on the system.

Alternatively, you can install the latest chromedriver as an 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.2.tar.gz (6.8 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.2-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: chromesession-0.1.2.tar.gz
  • Upload date:
  • Size: 6.8 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.2.tar.gz
Algorithm Hash digest
SHA256 6c01ad9525ebbd844ec60fff1ae4a05fc4174cc13f592a885916523ecdecda83
MD5 c03cbb393b3454230d59db9c0ad2db22
BLAKE2b-256 65d32d7f7c402496e0966b18d0ab48254153a94c207617b1797f7b0f901071c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: chromesession-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 7.9 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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e503b9cf73bc45b6cb027374797ab69a25cc794255e59aa9e23256110d86702e
MD5 c78588ced7a37308b2d0fca62a01c16d
BLAKE2b-256 95642c558f0f8d86fbd4e0914acde31d502ed871cd217dc6c7a75605368ef757

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