├── .gitignore ├── CHANGELOG.md ├── LICENCE.md ├── README.md ├── assets └── screenshot.png ├── keyboard-maestro └── Generate network visualization of notes selected in The Archive using zkviz.kmmacros ├── setup.py ├── tests ├── __init__.py └── test_zkviz.py └── zkviz ├── __init__.py ├── graphviz.py ├── plotly.py └── zkviz.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettelkasten-Method/zkviz/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettelkasten-Method/zkviz/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettelkasten-Method/zkviz/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettelkasten-Method/zkviz/HEAD/README.md -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettelkasten-Method/zkviz/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /keyboard-maestro/Generate network visualization of notes selected in The Archive using zkviz.kmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettelkasten-Method/zkviz/HEAD/keyboard-maestro/Generate network visualization of notes selected in The Archive using zkviz.kmmacros -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettelkasten-Method/zkviz/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_zkviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettelkasten-Method/zkviz/HEAD/tests/test_zkviz.py -------------------------------------------------------------------------------- /zkviz/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.3.2" 2 | -------------------------------------------------------------------------------- /zkviz/graphviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettelkasten-Method/zkviz/HEAD/zkviz/graphviz.py -------------------------------------------------------------------------------- /zkviz/plotly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettelkasten-Method/zkviz/HEAD/zkviz/plotly.py -------------------------------------------------------------------------------- /zkviz/zkviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zettelkasten-Method/zkviz/HEAD/zkviz/zkviz.py --------------------------------------------------------------------------------