Skip to main content

Asynchronous splinter wrapper Python library

Project description

aiosplinter - asynchronous splinter wrapper Python library

Asynchronous splinter wrapper Python library

Installation

To install from PyPI run:

$ pip install aiosplinter

Usage

See splinter documentation, because aiosplinter uses the same API as splinter with 2 exceptions:

  1. All functions are converted to coroutines, that means you have to add await keyword before all function calls.
  2. To asynchronously create classes from aiosplinter use static method create.

Example (open https://google.com with chrome, make screenshot and show it in default browser):

#!/usr/bin/env python

import asyncio
import webbrowser
from pathlib import Path

import aiosplinter


browser_name = 'chrome'
browser = asyncio.run(aiosplinter.Browser(driver_name=browser_name))
url = 'https://google.com'
asyncio.run(browser.visit(url=url))
screenshot_filename_base = str(Path('~/google.com_screenshot_').expanduser())
screenshot_filename = asyncio.run(browser.screenshot(name=screenshot_filename_base, full=True))
webbrowser.open(url=f'file://{screenshot_filename}')
asyncio.run(browser.quit())

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

aiosplinter-0.1.2.tar.gz (6.3 kB view hashes)

Uploaded source

Built Distribution

aiosplinter-0.1.2-py3-none-any.whl (14.4 kB view hashes)

Uploaded py3

Supported by

AWS AWS Cloud computing Datadog Datadog Monitoring Fastly Fastly CDN Google Google Object Storage and Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page