Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aix3/WizExport

为知笔记批量导出
https://github.com/aix3/WizExport

Last synced: about 2 months ago
JSON representation

为知笔记批量导出

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");
}
}
```