惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

量子位
F
Fortinet All Blogs
J
Java Code Geeks
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
M
MIT News - Artificial intelligence
腾讯CDC
Last Week in AI
Last Week in AI
The Cloudflare Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
P
Proofpoint News Feed
博客园 - 叶小钗
Recent Announcements
Recent Announcements
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
人人都是产品经理
人人都是产品经理
L
LangChain Blog
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

秋水逸冰

丽萨主机:双ISP家宽住宅IP VPS/CN2 GIA精品网/G口大带宽 | 秋水逸冰 Linux Kernel 6.18.x 编译版 | 秋水逸冰 思考未来人与 AI 的关系 | 秋水逸冰 3X-UI 面板安装和使用教程 | 秋水逸冰 Xray-UI 面板安装和使用教程 | 秋水逸冰 WCMP (Windows + Caddy + MariaDB + PHP) Nginx for Windows | 秋水逸冰 Aria2 for Windows | 秋水逸冰 Curl for Windows | 秋水逸冰 Wget for Windows | 秋水逸冰 Windows 11 Enterprise LTSC DD 镜像 Windows Server 2025 Datacenter DD 镜像 重新编译 curl 以支持 HTTP3 | 秋水逸冰 tiny10 和 tiny11 23H2 的 Windows DD 镜像 从 Apache httpd 切换到 Caddy2 LCMP (Linux + Caddy + MariaDB + PHP) Windows 11 Pro for Workstations 22H2 DD 镜像 Shadowsocks 编译版 by Teddysun | 秋水逸冰 适用于 UEFI 启动的多个 Windows 系统 DD 镜像 Linux Kernel 5.15.x 编译版 | 秋水逸冰 制作适用于 WSL 的任意 Linux 镜像 Windows 11 Pro for Workstations 21H2 DD 镜像 Windows 10 Enterprise LTSC DD 镜像 Linux Kernel 5.14.x 编译版 | 秋水逸冰 Linux Kernel 5.13.x 编译版 | 秋水逸冰 Windows Server 2022 Datacenter DD 镜像 在 Windows 10 上安装 Rocky Linux 系统 Linux Kernel 5.12.x 编译版 | 秋水逸冰 Linux Kernel 5.11.x 编译版 | 秋水逸冰 在 Windows 10 上安装 CentOS 系统
备份Google Reader数据 | 秋水逸冰
秋水逸冰 · 2013-06-30 · via 秋水逸冰

技术 秋水逸冰 10041浏览 2评论

google reader

  7月1日就是Google Reader的死期了,事到如今看来Google是没有打算回心转意了。不管不顾那几千万Google Reader的死忠用户也就罢了,可数据是用户说了算的。所以,导出数据是当务之急。已经有人为你写好了Python脚本,你需要做的就是运行它,然后导出数据即可。
  因为不喜欢Google的Takeout,所以Mihai Parparita开发出了这个脚本。运行这个脚本需要安装Python2.7(参考:CentOS 6.4安装Python2.7.5),支持Windows、Mac、Linux系统。该脚本存档后的Google Reader数据包括:你的订阅、你的笔记、你加星的条目、你喜欢的条目、你follow的好友、follow你的好友、你follow好友所分享的条目等。

1、下载脚本.zip或.tar格式,链接:

1)https://github.com/mihaip/readerisdead/zipball/master
2)https://github.com/mihaip/readerisdead/tarball/master
3)Linux下利用git命令下载:
cd /opt
git clone https://github.com/mihaip/readerisdead.git

2、运行脚本
如果是在Windows下运行,首先要安装Python2.7,然后运行后缀名为.bat的文件。
该脚本分为3个模块:
1)reader_archive
命令:

cd readerisdead/bin
./reader_archive --output_directory=~/Downloads/reader_archive

运行后会打开Google账户登录界面,输入帐号密码授权。导出数据会耗费比较长的时间,视你的网络状况及feed数量而定。备份300,000条数据,一般需要至少10分钟以上,产生大约1GB的数据。

2)feed_archive
命令:

cd readerisdead/bin
./feed_archive \
    --opml_file=~/Downloads/feeds.opml \
    --output_directory=~/Downloads/feed_archive

该命令是从Google Reader feed archive中获得全部的公开的feed,以OPML标准文件存储。

3)reader_browser
备注:该功能仍在开发中。
利用reader_archive导出数据后,可以用reader_browser命令浏览这些导出后的数据。
命令:

cd readerisdead/bin
./reader_browser ~/Downloads/reader_archive

然后会调用你的浏览器打开一个本地网址:http://localhost:8071/去浏览。

更新(2013年7月1日):
在Linux下使用shell运行命令时会遇到错误,要求开启Javascipt才行继续授权。因此建议在Windows下安装好Python后运行该脚本。今天是最后一天使用Google Reader了,明天该服务就会彻底shutdown了。

转载请注明:秋水逸冰 » 备份Google Reader数据