├── .cursor ├── commands │ ├── README.md │ ├── release-beta.md │ ├── release-stable.md │ └── release-tag.md └── rules │ └── project.mdc ├── .env.example ├── .github ├── changelog-config.json ├── release.yml └── workflows │ ├── build_and_release.yml │ ├── prerelease.yml │ └── stale.yml ├── .gitignore ├── LICENSE ├── README.md ├── RELEASE.md ├── conf └── logging.yaml ├── log.py ├── main.py ├── requirements.txt ├── sync ├── collaboration_note_parser.py ├── config.py ├── database.py ├── file_manager.py ├── html_note_parser.py ├── image_handler.py ├── image_uploader.py ├── init_dirs.py ├── lite_note_parser.py ├── note.py ├── note_fixer.py ├── note_parser.py ├── note_parser_factory.py ├── note_property.py ├── note_synchronizer.py ├── parsed_note.py └── wiz_open_api.py ├── test ├── 1.html ├── __init__.py ├── co_md.md ├── test_database.py ├── test_note_parser_factory.py ├── test_note_synchronizer_integration.py ├── test_wiz_open_api.py └── wss.json └── wiz2obsidian.spec /.cursor/commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/.cursor/commands/README.md -------------------------------------------------------------------------------- /.cursor/commands/release-beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/.cursor/commands/release-beta.md -------------------------------------------------------------------------------- /.cursor/commands/release-stable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/.cursor/commands/release-stable.md -------------------------------------------------------------------------------- /.cursor/commands/release-tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/.cursor/commands/release-tag.md -------------------------------------------------------------------------------- /.cursor/rules/project.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/.cursor/rules/project.mdc -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/.env.example -------------------------------------------------------------------------------- /.github/changelog-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/.github/changelog-config.json -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/build_and_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/.github/workflows/build_and_release.yml -------------------------------------------------------------------------------- /.github/workflows/prerelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/.github/workflows/prerelease.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/RELEASE.md -------------------------------------------------------------------------------- /conf/logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/conf/logging.yaml -------------------------------------------------------------------------------- /log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/log.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/requirements.txt -------------------------------------------------------------------------------- /sync/collaboration_note_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/sync/collaboration_note_parser.py -------------------------------------------------------------------------------- /sync/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/sync/config.py -------------------------------------------------------------------------------- /sync/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/sync/database.py -------------------------------------------------------------------------------- /sync/file_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/sync/file_manager.py -------------------------------------------------------------------------------- /sync/html_note_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/sync/html_note_parser.py -------------------------------------------------------------------------------- /sync/image_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/sync/image_handler.py -------------------------------------------------------------------------------- /sync/image_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/sync/image_uploader.py -------------------------------------------------------------------------------- /sync/init_dirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/sync/init_dirs.py -------------------------------------------------------------------------------- /sync/lite_note_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/sync/lite_note_parser.py -------------------------------------------------------------------------------- /sync/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/sync/note.py -------------------------------------------------------------------------------- /sync/note_fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/sync/note_fixer.py -------------------------------------------------------------------------------- /sync/note_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/sync/note_parser.py -------------------------------------------------------------------------------- /sync/note_parser_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/sync/note_parser_factory.py -------------------------------------------------------------------------------- /sync/note_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/sync/note_property.py -------------------------------------------------------------------------------- /sync/note_synchronizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/sync/note_synchronizer.py -------------------------------------------------------------------------------- /sync/parsed_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/sync/parsed_note.py -------------------------------------------------------------------------------- /sync/wiz_open_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/sync/wiz_open_api.py -------------------------------------------------------------------------------- /test/1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/test/1.html -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | # This file makes the 'test' directory a Python package. -------------------------------------------------------------------------------- /test/co_md.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/test/co_md.md -------------------------------------------------------------------------------- /test/test_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/test/test_database.py -------------------------------------------------------------------------------- /test/test_note_parser_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/test/test_note_parser_factory.py -------------------------------------------------------------------------------- /test/test_note_synchronizer_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/test/test_note_synchronizer_integration.py -------------------------------------------------------------------------------- /test/test_wiz_open_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/test/test_wiz_open_api.py -------------------------------------------------------------------------------- /test/wss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/test/wss.json -------------------------------------------------------------------------------- /wiz2obsidian.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awaken233/wiz2obsidian/HEAD/wiz2obsidian.spec --------------------------------------------------------------------------------