Skip to main content

Chrome controller for Humans, base on Chrome Devtools Protocol(CDP) and python3.8+. Read more: https://github.com/ClericPy/ichrome.

Project description

ichrome PyPIPyPI - WheelPyPI - Python VersionPyPI - DownloadsPyPI - License


Chrome controller for Humans, based on Chrome Devtools Protocol(CDP) and python3.8+. Read Docs

🚀 [NEW] ichrome v6.0.1 is available! Now supporting ichrome.http - a RESTful API server to control Chrome via HTTP requests.

uvx --from ichrome ichrome.http
or
python -m ichrome.http
then view the interactive API docs at http://localhost:8080/docs

Want to add your own endpoints? Wrap tab operations as business logic into HTTP routes. See demo/custom_routes_guide.py for a quick guide.

image

If you encounter any problems, please let me know through issues; your feedback is valuable for enhancing ichrome.

Install

pip install ichrome -U

Uninstall & Clear the user data folder

    $ python3 -m ichrome --clean
    $ pip uninstall ichrome

Quick Start

import asyncio
from ichrome import AsyncChromeDaemon


async def test():
    async with AsyncChromeDaemon() as cd:
        # create a new tab
        async with cd.connect_tab(index=None) as tab:
            await tab.goto('https://github.com/ClericPy/ichrome', timeout=5)
            print(await tab.title)
        # Privacy Mode, proxyServer arg maybe not work on Chrome, for `Target.createBrowserContext` is the EXPERIMENTAL feature(but chromium is ok).
        # https://chromedevtools.github.io/devtools-protocol/tot/Target/#method-createBrowserContext
        async with cd.incognito_tab(proxyServer='http://127.0.0.1:8080') as tab:
            await tab.goto('https://httpbin.org/ip', timeout=5)
            print(await tab.html)


asyncio.run(test())

Why?

  • In desperate need of a stable toolkit to communicate with Chrome browser (or other Blink-based browsers such as Chromium)
    • ichrome includes fast http & websocket connections (based on aiohttp) within an asyncio environment
  • Pyppeteer is awesome
    • But I don't need so much, and the spelling of 'pyppeteer' is confusing
    • Event-driven architecture (EDA) is not always ideal.
  • Selenium is slow
    • Webdriver often comes with memory leaks
      • PhantomJS development is suspended
    • No native coroutine (asyncio) support
  • Playwright arrived too late
    • This may be a good choice for both sync and async usage
      • The original author of puppeteer joined the team.
    • But its core code is based on Node.js, which is hard to monkey-patch.

Features

As we know, Javascript is the first-class citizen of the Browser world, so learn to use it frequently with ichrome.

  • A process daemon for Chrome instances

    • auto-restart
    • command-line usage
    • async environment compatible
  • Connect to an existing Chrome

  • Operations on Tabs under stable websocket

    • Commonly used functions
    • Incognito Mode
  • ChromeEngine as the process pool

    • support HTTP api router with aiohttp
      • python -m ichrome.http or uvx ichrome.http
      • python -m ichrome.http --help for usage
    • python -m ichrome.web (Removed since v6.0.0)
  • Flatten mode with sessionId

    • Create only 1 WebSocket connection
    • New in version 2.9.0
      • EXPERIMENTAL
      • Share the same Websocket connection and use sessionId to distinguish requests
    • After v3.0.1
      • AsyncTab._DEFAULT_FLATTEN = True
  • The install script of chromium

  • debug mode for sync usage with ichrome.debugger >4.0.0 (EXPERIMENTAL)

Breaking Changes

  1. v6.0.0
    1. ichrome.web module is removed, use ichrome.http instead.
    2. refactor the ChromeEngine method parameters.
      1. add wait condition before engine.do

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

ichrome-6.0.1.tar.gz (152.2 kB view details)

Uploaded Source

Built Distribution

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

ichrome-6.0.1-py3-none-any.whl (83.2 kB view details)

Uploaded Python 3

File details

Details for the file ichrome-6.0.1.tar.gz.

File metadata

  • Download URL: ichrome-6.0.1.tar.gz
  • Upload date:
  • Size: 152.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.33.1

File hashes

Hashes for ichrome-6.0.1.tar.gz
Algorithm Hash digest
SHA256 a2bf78959a842ef411f335548edefd2f12e7fc181f485717b20fa49feef6e736
MD5 43f5116b06d04df4e1c5402086587e1b
BLAKE2b-256 21bfdd5fc17d562752e52fcbcdf8e55fd7029b8f76ea409acac4ffe5b9a9fcd6

See more details on using hashes here.

File details

Details for the file ichrome-6.0.1-py3-none-any.whl.

File metadata

  • Download URL: ichrome-6.0.1-py3-none-any.whl
  • Upload date:
  • Size: 83.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.33.1

File hashes

Hashes for ichrome-6.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8153458722f3b6653538c18b3fc832f0209c303d3884f238f4b50c1df4c2038a
MD5 b04b4fb0bcda86844347ce63a86642f1
BLAKE2b-256 60f9a03084d58fe00e3fce81683ee3b331fd48dffbad1d847d700cc3958171f8

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