提取 picasaweb 相册名称

发布于 2024-11-06 20:19:23 字数 231 浏览 0 评论 0原文

我只是想知道专辑名称。这是一个示例页面:

http://picasaweb.google.com/sunnchoi

但是当我得到它并 grep对于标题模式,我得到 100 个结果。我知道我必须模拟单击“显示更多专辑”链接。我该如何做到这一点(使用 bash utils/perl)?

I'd just like to get the album names. Here's an example page:

http://picasaweb.google.com/sunnchoi

But when I wget it and grep for a title pattern, I get 100 results. I understand that I have to emulate clicking the 'Show More Albums' link. How do I do that (using bash utils/perl)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

少钕鈤記 2024-11-13 20:19:23

尝试 Picases 网络相册 API

他们有 Python/Java 和其他语言的示例。以下是请求相册列表(此列表使用 python )。

Try the Picases Web Album API.

They have examples in Python/Java and other languages. Here's request a list of albums (this one using python).

心欲静而疯不止 2024-11-13 20:19:23

如果你有可用的 xmlstarlet,你可以直接解析给定网站相应的 RSS URL:

xmlstarlet sel --net -T -t -m '//item' -v 'title' -n \
'http://picasaweb.google.com/data/feed/base/user/sunnchoi?alt=rss&kind=album&hl=en_US&access=public' | 
nl

If you have xmlstarlet available, you can directly parse the corresponding RSS URL of the given website:

xmlstarlet sel --net -T -t -m '//item' -v 'title' -n \
'http://picasaweb.google.com/data/feed/base/user/sunnchoi?alt=rss&kind=album&hl=en_US&access=public' | 
nl
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文