编程语言
首页 > 编程语言> > 如何使用Python读取本地存储?

如何使用Python读取本地存储?

作者:互联网

我必须使用Python来自动访问(阅读)网页.使用Python,我可以轻松访问网页的内容(HTML代码)以及服务器发送的cookie.

现在,在HTML5中,我们有了一个新概念“本地存储”.因此,我需要修改Python脚本,以便还可以读取本地存储中存储的数据.

有可能这样做吗?是否有任何Python库可简化此操作?

解决方法:

是的,但是Python本身不包含JavaScript解释器.
因此,您可以如thibpat所述通过Selenium在Web浏览器实例上执行自定义脚本.

其他选项是运行无头浏览器的PhantomJS.

遍历localStorage的脚本

for (var i = 0; i < localStorage.length; i++){
    key=localStorage.key(i); 
    console.log(key+': '+localStorage.getItem(key));
}

高级脚本

如前所述,HTML5功能浏览器here还应该实现Array.prototype.map.因此脚本将是:

Array.apply(0, new Array(localStorage.length)).map(function (o, i) 
   { return localStorage.key(i)+':'+localStorage.getItem(localStorage.key(i)); }
)

Python绑定

您可能希望将Python绑定与桌面开发框架一起使用.例如PyQt.

为什么JavaScript要获取本地存储

definition

Unlike cookies, which can be accessed by both the server and client side, web storage falls exclusively under the purview of client-side scripting.
Web storage data is not automatically transmitted to the server in every HTTP request, and a web server can’t directly write to Web storage. However, either of these effects can be achieved with explicit client-side scripts, allowing for fine-tuning of the desired interaction with the server.

因此,在我看来,本地存储是由网络浏览器(例如Opera)在运行浏览器的硬盘(或云机)上某处存储的数据.因此,要获取它们,您需要本地破解Opera的执行程序,库和/或数据文件,这很难.最简单的方法是应用客户端脚本,即JavaScript.

标签:html5,web-scraping,local-storage,python
来源: https://codeday.me/bug/20191119/2037360.html