Loading...
Loading...
Compare original and translation side by side
Note: This skill is meant for my own licensed content. It does not bypass DRM. If a title can’t be downloaded in an accessible file format, use Amazon’s official reading/export options instead.
注意:本技能仅适用于我自己的授权内容,不会绕过DRM。如果某本书无法以可访问的文件格式下载,请改用亚马逊官方的阅读/导出选项。
export LIBRARY_KEY="your-key"LIBRARY_KEYexport LIBRARY_KEY="your-key"LIBRARY_KEY| Task | Command |
|---|---|
| Search | |
| Get details | |
| Download | |
| Verify match | |
| 任务 | 命令 |
|---|---|
| 搜索 | |
| 获取详情 | |
| 下载 | |
| 验证匹配 | |
export LIBRARY_KEY="your-membership-key"export LIBRARY_KEY="your-membership-key"digraph download_flow {
rankdir=TB;
node [shape=box];
search [label="Search by title/author"];
verify [label="Verify correct book\n(check title, author, year)"];
multiple [label="Multiple editions?" shape=diamond];
prefer_recent [label="Prefer most recent\nunless specific edition requested"];
format_ok [label="Preferred format available?" shape=diamond];
download [label="Download via fast API"];
convert [label="Use ebook-extractor\nto convert to text"];
search -> verify;
verify -> multiple;
multiple -> prefer_recent [label="yes"];
multiple -> format_ok [label="no"];
prefer_recent -> format_ok;
format_ok -> download [label="yes"];
format_ok -> search [label="no - try different format"];
download -> convert;
}digraph download_flow {
rankdir=TB;
node [shape=box];
search [label="Search by title/author"];
verify [label="Verify correct book\n(check title, author, year)"];
multiple [label="Multiple editions?" shape=diamond];
prefer_recent [label="Prefer most recent\nunless specific edition requested"];
format_ok [label="Preferred format available?" shape=diamond];
download [label="Download via fast API"];
convert [label="Use ebook-extractor\nto convert to text"];
search -> verify;
verify -> multiple;
multiple -> prefer_recent [label="yes"];
multiple -> format_ok [label="no"];
prefer_recent -> format_ok;
format_ok -> download [label="yes"];
format_ok -> search [label="no - try different format"];
download -> convert;
}undefinedundefinedundefinedundefinedpdf > epub > mobi > azw3 > djvupdf > epub > mobi > azw3 > djvuhttps://library-archive.org/searchqextsortyear_deschttps://library-archive.org/dyn/api/fast_download.jsonmd5keyhttps://library-archive.org/searchqextsortyear_deschttps://library-archive.org/dyn/api/fast_download.jsonmd5key| Mistake | Fix |
|---|---|
| Key not set | Check |
| Wrong edition | Use |
| Format mismatch | Explicitly set |
| Book not found | Try shorter query, author name variations |
| 错误 | 解决方法 |
|---|---|
| 未设置密钥 | 检查 |
| 版本错误 | 使用 |
| 格式不匹配 | 显式设置 |
| 未找到书籍 | 尝试更短的查询词,或使用作者名的不同变体 |
books/Clean_Code.pdfbooks/Clean_Code.txtbooks/Clean_Code.pdfbooks/Clean_Code.txtUsing mirror: <domain>Using mirror: <domain>[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificatepip3 install certifipython3 -c "import certifi; print(certifi.where())"~/.zshrcexport SSL_CERT_FILE=/path/from/step/2/cacert.pemsource ~/.zshrcpython3 -c "import urllib.request; urllib.request.urlopen('https://google.com')"/Library/Frameworks/Python.frameworkverify=FalsePYTHONHTTPSVERIFY=0[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificatepip3 install certifipython3 -c "import certifi; print(certifi.where())"~/.zshrcexport SSL_CERT_FILE=/path/from/step/2/cacert.pemsource ~/.zshrcpython3 -c "import urllib.request; urllib.request.urlopen('https://google.com')"/Library/Frameworks/Python.frameworkverify=FalsePYTHONHTTPSVERIFY=0