├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github └── workflows │ └── workflow.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── README.md ├── mise.toml ├── poetry.lock ├── pyproject.toml ├── scripts └── setup ├── tests └── __init__.py └── zettelkasten_cli ├── __init__.py ├── config.py ├── main.py ├── new_note.py ├── periodic_notes.py └── utils.py /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/zettelkasten-cli/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/zettelkasten-cli/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/zettelkasten-cli/HEAD/.github/workflows/workflow.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/zettelkasten-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/zettelkasten-cli/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/zettelkasten-cli/HEAD/README.md -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/zettelkasten-cli/HEAD/mise.toml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/zettelkasten-cli/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/zettelkasten-cli/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/zettelkasten-cli/HEAD/scripts/setup -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zettelkasten_cli/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.2.0" 2 | -------------------------------------------------------------------------------- /zettelkasten_cli/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/zettelkasten-cli/HEAD/zettelkasten_cli/config.py -------------------------------------------------------------------------------- /zettelkasten_cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/zettelkasten-cli/HEAD/zettelkasten_cli/main.py -------------------------------------------------------------------------------- /zettelkasten_cli/new_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/zettelkasten-cli/HEAD/zettelkasten_cli/new_note.py -------------------------------------------------------------------------------- /zettelkasten_cli/periodic_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/zettelkasten-cli/HEAD/zettelkasten_cli/periodic_notes.py -------------------------------------------------------------------------------- /zettelkasten_cli/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mischavandenburg/zettelkasten-cli/HEAD/zettelkasten_cli/utils.py --------------------------------------------------------------------------------