ReactiPy - 网页内容抓取工具


MIT
跨平台
Python

软件简介

ReactiPy 是 Python 的模块,用来将 React 组件渲染成 HTML 内容。它支持快速加载网页、使搜索引擎更快的抓取网页内容,以达到 SEO
优化的目的。

代码示例:

from reactipy.component import ReactComponent
import os


class HelloWorldComponent(ReactComponent):
    path = os.path.join(
        os.path.dirname(os.path.abspath(__file__)),
        'components/helloworld.js')

component = HelloWorldComponent()

component.render(props=['Hello', 'World'])