使用 chaquopy 实现 BeautifulSoup 到 Android Studio

Implementing BeautifulSoup to Android Studio with chaquopy

我目前正在使用 Android Studio 和 BeautifulSoup 制作网络抓取应用程序。我如何实施

from bs4 import BeautifulSoup

像在 Python?

一样进入 Android Studio

我的build.gradle是

python {
        buildPython "C:/Python38/python.exe"
        pip{
            install "bs4"
            install "beautifulsoup4"
            install "requests"
        }
    }

我在 Python 的进口是

from bs4 import BeautifulSoup
import requests

而不是使用

soup = BeautifulSoup(html_text, 'lxml')

我用过

soup = BeautifulSoup(html_text, 'html.parser')

在 Python 文件中,它似乎完成了工作。