Skip to main content

这是一个 pywebview 修改版本

Project description

WebviewRevise 是一个基于 PyWebView 5.1 版本的修改版本,集成了网络拦截功能(该功能目前仅支持 EdgeChromium 作为后端引擎)。

概述

PyWebView 是一个轻量级的跨平台库,用于在 Python 应用程序中创建和控制 Webview 窗口。本项目在原有的基础上进行了扩展,添加了网络拦截功能,允许开发者拦截和修改通过 Webview 发送的网络请求。

特性

  • 基于 PyWebView 5.1。

  • 网络拦截功能,允许开发者:
    • 拦截 HTTP 请求和响应。

    • 修改请求头和响应头。

  • 允许开发者自己控制CoreWebView2。
    • 只需要继承filter,在 do 方法中设置即可

安装

使用 pip 安装 WebviewRevise :

pip install WebviewRevise

请注意,由于本项目是 PyWebView 的修改版本,可能需要从源代码安装或使用特定的安装步骤。

使用示例

以下是一个简单的使用示例,展示如何创建一个带有网络拦截功能的 Webview 窗口:

import webview
from webview.platforms.edgechromium import DoSomething,filter,WebView2Core
from webview.platforms.winforms import BrowserMap

class net(filter):
    def do(self, edgeChrome, sender, args):
        # 开启请求过滤
        sender.CoreWebView2.AddWebResourceRequestedFilter("*", WebView2Core.CoreWebView2WebResourceContext.All) # *:表示所有
        # 网络请求拦截回调设置
        sender.CoreWebView2.WebResourceRequested += self.on_web_resource_requested # 设置回调函数

    def on_web_resource_requested(self, sender, args):
        """网络请求拦截回调函数:
            如果需要修改请求或响应,可以在这里进行操作

        Args:
            sender (_type_): Microsoft.Web.WebView2.Core.CoreWebView2 对象
            args (_type_): Microsoft.Web.WebView2.Core.CoreWebView2WebResourceRequestedEventArgs对象
        """
        # 例如,打印请求的 URI
        print(args.Request.Uri)
        # 详情请参照 Microsoft.Web.WebView2 如何使用


if __name__ == '__main__':
    # 创建 Webview 窗口并设置网络请求拦截器
    DoSomething.append(net())
    window = webview.create_window('Simple browser',"src/index.html")
    window.is_filter = True # 默认开启过滤拦截
    webview.start()

贡献

我们欢迎任何形式的贡献,包括但不限于:

  • 报告问题或错误。

  • 提供功能请求或改进建议。

许可证

本项目采用 Modified BSD 许可证。有关更多信息,请查看 LICENSE 文件。

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

webviewrevise-0.0.6.tar.gz (431.9 kB view details)

Uploaded Source

Built Distribution

WebviewRevise-0.0.6-py2.py3-none-any.whl (448.2 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file webviewrevise-0.0.6.tar.gz.

File metadata

  • Download URL: webviewrevise-0.0.6.tar.gz
  • Upload date:
  • Size: 431.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.7

File hashes

Hashes for webviewrevise-0.0.6.tar.gz
Algorithm Hash digest
SHA256 ab705f8ac637dd5b3426918bcdfae86af179c68b7130f886dd5a445d2379539c
MD5 211223d1e8e2d86ac578dc6fa3c80fc3
BLAKE2b-256 d191d6edfb9bcd29e5b3946f60cb45ba53de7e13e426cb1ea836e79956a58447

See more details on using hashes here.

File details

Details for the file WebviewRevise-0.0.6-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for WebviewRevise-0.0.6-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 9e33a08e7f446cdac2dc4d2c3fddcfe03e41be229b79588097e0735540c8bc7c
MD5 6a3fc5b2e9def7c97d18c1d43b1852f0
BLAKE2b-256 f98b255acf87eb5220f71e3255b6deaa6dfc9d444a78172eb3eb623f1d955628

See more details on using hashes here.

Supported by

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