PlaywrightSafeThread
Project description
PlaywrightSafeThread
use playwright as async and sync safe thread
used in WPP_Whatsapp
use sync in only one at time, else use async
in events like page.on
use async and wait
from minet
Installation
pip install PlaywrightSafeThread
pip install git+https://www.github.com/3mora2/PlaywrightSafeThread@main
Example
- to run async method in like page, user
await th.create_task
orth.run_threadsafe
- can't run async method from page outside ThreadsafeBrowser Loop, use
await th.create_task
- can't run method
run_threadsafe
in ThreadsafeBrowser Loop
Sync
from PlaywrightSafeThread import ThreadsafeBrowser
th = ThreadsafeBrowser(
install=False,
no_context=False,
browser="chromium", channel="chrome", headless=False,
no_viewport=True, bypass_csp=True
)
th.goto_sync("https://web.whatsapp.com/", wait_until="networkidle")
# or
th.run_threadsafe(th.page.goto("https://web.whatsapp.com/", wait_until="networkidle"))
th.sync_close()
Async
Use asyncio.run
import asyncio
from PlaywrightSafeThread import ThreadsafeBrowser
async def main():
th = ThreadsafeBrowser(
install=False,
no_context=False,
browser="chromium", channel="chrome", headless=False,
no_viewport=True, bypass_csp=True, # loop=loop
)
# Work Only When start from th loop, not in (asyncio.run(main()))
# await th.page.goto("https://web.whatsapp.com/", wait_until="networkidle")
await th.goto("https://web.whatsapp.com/")
# or
await th.create_task(
th.page.goto("https://web.whatsapp.com/")
)
# Not Work when start from th loop, work in only (asyncio.run(main()))
th.goto_sync("https://web.whatsapp.com/", wait_until="networkidle")
await th.close()
asyncio.run(main())
Use ThreadsafeBrowser.loop
import asyncio
from PlaywrightSafeThread import ThreadsafeBrowser
th = ThreadsafeBrowser(
install=False,
no_context=False,
browser="chromium", channel="chrome", headless=False,
no_viewport=True, bypass_csp=True, # loop=loop
)
loop = th.loop
async def main():
await th.page.goto("https://web.whatsapp.com/", wait_until="networkidle")
await th.create_task(
th.page.goto("https://web.whatsapp.com/")
)
await th.goto("https://web.whatsapp.com/")
# Not Work when start from th loop, work in only (asyncio.run(main()))
# th.goto_sync("https://web.whatsapp.com/", wait_until="networkidle")
await th.close()
task = asyncio.run_coroutine_threadsafe(main(), loop=loop)
task.result()
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
Built Distribution
File details
Details for the file playwrightsafethread-0.5.5.tar.gz
.
File metadata
- Download URL: playwrightsafethread-0.5.5.tar.gz
- Upload date:
- Size: 12.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8bb25cdec2a4c6c6b8a1c784f37028ee1d6d3c4b505b76c041eeada9cbc2c880 |
|
MD5 | 51c7d2ec0183a557800124ee5a297c24 |
|
BLAKE2b-256 | 41f2af2b7493f6584b96c8b3f24487cb0c581fc44a7458a57eba93daffdfb63d |
File details
Details for the file PlaywrightSafeThread-0.5.5-py3-none-any.whl
.
File metadata
- Download URL: PlaywrightSafeThread-0.5.5-py3-none-any.whl
- Upload date:
- Size: 12.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6225a7cb55d1661c334fa034c4f270f018e455f67badf5af12031469f31091a5 |
|
MD5 | ea7db50e284b28d9550926bd19ea7aaf |
|
BLAKE2b-256 | 35aed86abb887a6b908942786811d4f2daefe0f5d11a16484d286c67f990375f |