如何将 (request.post) pandas dataframe/json 发送到我的 raspberry-pi 网络服务器?
How can I send (request.post) pandas dataframe/json to my raspberry-pi webserver?
我正在寻找有关如何从 python 获取 dataframe/json 数据并将其部署在简单 table 上的 guides/videos、建议和提示通过 html/php 在我的 raspberry-pi 上,它是 运行 作为我本地网络上的网络服务器。任何帮助将不胜感激,因为我已经尝试这样做了几个小时。
我没有任何使用 apache 的经验,但是使用 df.to_html()
方法让您的数据框显示为网页非常简单。
with open("dataframe.html", "w+") as f:
html = df.to_html()
f.write(html)
现在,如果您在本地打开 dataframe.html
,您将在浏览器中看到您的数据框。
如何部署那是另一回事——看起来 python 需要启用。 This link should get you started...
我正在寻找有关如何从 python 获取 dataframe/json 数据并将其部署在简单 table 上的 guides/videos、建议和提示通过 html/php 在我的 raspberry-pi 上,它是 运行 作为我本地网络上的网络服务器。任何帮助将不胜感激,因为我已经尝试这样做了几个小时。
我没有任何使用 apache 的经验,但是使用 df.to_html()
方法让您的数据框显示为网页非常简单。
with open("dataframe.html", "w+") as f:
html = df.to_html()
f.write(html)
现在,如果您在本地打开 dataframe.html
,您将在浏览器中看到您的数据框。
如何部署那是另一回事——看起来 python 需要启用。 This link should get you started...