Make batch updates to Obsidian metadata
Project description
obsidian-metadata
A script to make batch updates to metadata in an Obsidian vault. No changes are made to the Vault until they are explicitly committed.
Important Disclaimer
It is strongly recommended that you back up your vault prior to committing changes. This script makes changes directly to the markdown files in your vault. Once the changes are committed, there is no ability to recreate the original information unless you have a backup. Follow the instructions in the script to create a backup of your vault if needed. The author of this script is not responsible for any data loss that may occur. Use at your own risk.
Install
Requires Python v3.10 or above.
pip install obsidian-metadata
Usage
Run obsidian-metadata
from the command line to invoke the script. Add --help
to view additional options.
Obsidian-metadata provides a menu of sub-commands.
Vault Actions
- Backup: Create a backup of the vault.
- Delete Backup: Delete a backup of the vault.
Inspect Metadata
- View all metadata in the vault
Filter Notes in Scope: Limit the scope of notes to be processed with a regex.
- Apply regex: Set a regex to limit scope
- List notes in scope: List notes that will be processed.
Add Metadata
- Add metadata to the frontmatter
- Add to inline metadata (Not yet implemented)
- Add to inline tag (Not yet implemented)
Rename Metadata
- Rename a key
- Rename a value
- rename an inline tag
Delete Metadata
- Delete a key and associated values
- Delete a value from a key
- Delete an inline tag
Review Changes
- View a diff of the changes that will be made
Commit Changes
- Commit changes to the vault
Configuration
obsidian-metadata
requires a configuration file at ~/.obsidian_metadata.toml
. On first run, this file will be created. You can specify a new location for the configuration file with the --config-file
option.
To add additional vaults, copy the default section and add the appropriate information. The script will prompt you to select a vault if multiple exist in the configuration file
Below is an example with two vaults.
["Vault One"] # Name of the vault.
# Path to your obsidian vault
path = "/path/to/vault"
# Folders within the vault to ignore when indexing metadata
exclude_paths = [".git", ".obsidian"]
["Vault Two"]
path = "/path/to/second_vault"
exclude_paths = [".git", ".obsidian"]
To bypass the configuration file and specify a vault to use at runtime use the --vault-path
option.
Contributing
Setup: Once per project
There are two ways to contribute to this project.
1. Containerized development (Recommended)
- Clone this repository.
git clone https://github.com/natelandau/obsidian-metadata
- Open the repository in Visual Studio Code
- Start the Dev Container. Run Ctrl/⌘ + ⇧ + P → Remote-Containers: Reopen in Container.
- Run
poetry env info -p
to find the PATH to the Python interpreter if needed by VSCode.
2. Local development
- Install Python 3.10 and Poetry
- Clone this repository.
git clone https://github.com/natelandau/obsidian-metadata
- Install the Poetry environment with
poetry install
. - Activate your Poetry environment with
poetry shell
. - Install the pre-commit hooks with
pre-commit install --install-hooks
.
Developing
- This project follows the Conventional Commits standard to automate Semantic Versioning and Keep A Changelog with Commitizen.
- When you're ready to commit changes run
cz c
- When you're ready to commit changes run
- Run
poe
from within the development environment to print a list of Poe the Poet tasks available to run on this project. Common commands:poe lint
runs all linterspoe test
runs all tests with Pytest
- Run
poetry add {package}
from within the development environment to install a run time dependency and add it topyproject.toml
andpoetry.lock
. - Run
poetry remove {package}
from within the development environment to uninstall a run time dependency and remove it frompyproject.toml
andpoetry.lock
. - Run
poetry update
from within the development environment to upgrade all dependencies to the latest versions allowed bypyproject.toml
.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for obsidian_metadata-0.3.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b64d3b5e723eb9a3615a928bc8edbc3ec2c4da54893e553263e35b0b2781e50f |
|
MD5 | bc804e594794e997a13315c0a2083046 |
|
BLAKE2b-256 | aee22e4f9aaea0f7212dca9197d0b13897ecebeedaee8cbdb6bf529792bd165a |