Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aix3/WizExport
为知笔记批量导出
https://github.com/aix3/WizExport
Last synced: 3 months ago
JSON representation
为知笔记批量导出
- Host: GitHub
- URL: https://github.com/aix3/WizExport
- Owner: aix3
- Created: 2020-03-01T14:36:55.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-01T23:21:11.000Z (about 2 years ago)
- Last Synced: 2023-03-04T07:11:05.694Z (over 1 year ago)
- Language: Java
- Size: 6.84 KB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WizExport
利用为知笔记的 OpenAPI 把笔记下载到本地,支持 markdown 和 html 格式的笔记# Usage
传入用户名和密码,然后指定一个文档保存位置,启动 main 方法就可以进行文档下载
```Java
public class Main {
public static void main(String[] args) throws IOException {
new Wiz().login("[email protected]", "password")
.downloadTo("C:\\wiz");
}
}
```