Browser API service for Entari using Playwright
Project description
entari-plugin-browser
Browser API service for Entari using Playwright
使用
导入
from entari_plugin_browser import playwright_api, text2img
async def main():
async with playwright_api.page() as page:
await page.goto('https://www.baidu.com')
await page.screenshot(path='baidu.png')
img: bytes = await text2img('Hello, World!')
配置
在你的 Entari 配置文件中如下配置:(以 entari.yml 为例)
plugins:
browser:
browser_type: chromium
channel: chrome
headless: true
# ...
# 更多配置请参考 Playwright 文档,详见 <https://playwright.dev/python/docs/api/class-browsertype#browser-type-launch>
HTMLRenderer
除了内置提供的 text2img 和 md2img 方法外,你还可以使用 HTMLRenderer 等来自定义渲染器。
from entari_plugin_browser import HTMLRenderer, convert_md, PageOption, ScreenshotOption
md = """\
<div align="center">
# entari-plugin-browser
*Browser API service for Entari using Playwright*
</div>
## 使用
### 导入
from entari_plugin_browser import playwright_api, text2img
async def main():
async with playwright_api.page() as page:
await page.goto('https://www.baidu.com')
await page.screenshot(path='baidu.png')
img: bytes = await text2img('Hello, World!')
"""
async def function():
image_bytes: bytes = await HTMLRenderer().render(
convert_md(md),
extra_page_option=PageOption(viewport={"width": 840, "height": 10}, device_scale_factor=1.5),
extra_screenshot_option=ScreenshotOption(type="jpeg", quality=80, scale="device"),
)
模板转图片(可选依赖 jinja2)
如需将 Jinja2 模板渲染为 HTML 并输出图片,安装可选依赖:
pip install "entari-plugin-browser[jinja2]"
示例:
from entari_plugin_browser import template2img
async def main():
text_list = ["1", "2", "3", "4"]
template_path = "path/to/templates"
template_name = "example.html"
img: bytes = await template2img(
template_path=template_path,
template_name=template_name,
templates={"text_list": text_list},
)
说明:默认启用 HTML 自动转义,如需插入已转义 HTML,请在模板中使用 |safe 过滤器。
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file entari_plugin_browser-0.5.4.tar.gz.
File metadata
- Download URL: entari_plugin_browser-0.5.4.tar.gz
- Upload date:
- Size: 16.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.25.6 CPython/3.11.7 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82bbd6d36f934b0bbf8657ac808c11c9e5c7c64b3cd5507c2a638ca5aed45808
|
|
| MD5 |
a924741541c04a578a223bec8421fa3f
|
|
| BLAKE2b-256 |
ac59098f3e6b44b4fa1760a7e1895ac53270d0ad36501c06ed7ccb73f7f81d3a
|
File details
Details for the file entari_plugin_browser-0.5.4-py3-none-any.whl.
File metadata
- Download URL: entari_plugin_browser-0.5.4-py3-none-any.whl
- Upload date:
- Size: 19.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.25.6 CPython/3.11.7 Windows/10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37c96392edfff27296f5b6dbc9a9558b7745442070ec2544e9db1c3bb2702b05
|
|
| MD5 |
99f86dfbc38b6aa68c4302ad118e4454
|
|
| BLAKE2b-256 |
619f5d71ac7722ece2ce11dd43813618eaade57d5e114791019455610d577f83
|