obsidiantools


Nameobsidiantools JSON
Version 0.10.0 PyPI version JSON
download
home_pagehttps://github.com/mfarragher/obsidiantools
SummaryObsidian Tools - a Python interface for Obsidian.md vaults
upload_time2023-01-08 13:29:37
maintainer
docs_urlNone
authorMark Farragher
requires_python>=3.9
licenseBSD
keywords obsidian obsidian.md knowledge note-taking notes knowledge management connected notes
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![PyPI version](https://badge.fury.io/py/obsidiantools.svg)](https://badge.fury.io/py/obsidiantools) [![PyPI version](https://img.shields.io/pypi/pyversions/obsidiantools.svg)](https://badge.fury.io/py/obsidiantools)
[![Licence](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://github.com/mfarragher/obsidiantools/blob/main/LICENSE) [![Documentation](https://img.shields.io/badge/docs-obsidiantools--demo-orange)](https://github.com/mfarragher/obsidiantools-demo) [![codecov](https://codecov.io/gh/mfarragher/obsidiantools/branch/main/graph/badge.svg)](https://codecov.io/gh/mfarragher/obsidiantools)

# obsidiantools 🪨⚒️
**obsidiantools** is a Python package for getting structured metadata about your [Obsidian.md notes](https://obsidian.md/) and analysing your vault.  Complement your Obsidian workflows by getting metrics and detail about all your notes in one place through the widely-used Python data stack.

It's incredibly easy to explore structured data on your vault through this fluent interface.  This is all the code you need to generate a `vault` object that stores all the data:

```python
import obsidiantools.api as otools

vault = otools.Vault(<VAULT_DIRECTORY>).connect().gather()
```

These are the basics of the method calls:
- `connect()`: connect your notes together in a graph structure and get metadata on links (e.g. wikilinks, backlinks, etc.)  There ais the option to support the inclusion of 'attachment' files in the graph.
- `gather()`: gather the plaintext content from your notes in one place.  This includes the 'source text' that represent how your notes are written.  There are arguments to support what text you want to remove, e.g. remove code.

See some of the **key features** below - all accessible from the `vault` object either through a method or an attribute.

The package is built to support the 'shortest path when possible' option for links.  This should cover the vast majority of vaults that people create.  See the [wiki](https://github.com/mfarragher/obsidiantools/wiki) for more info on what sort of wikilink syntax is not well-supported and how the graph may be slightly different to what you see in the Obsidian app.

## 💡 Key features
This is how **`obsidiantools`** can complement your workflows for note-taking:
- **Access a `networkx` graph of your vault** (`vault.graph`)
    - NetworkX is the main Python library for network analysis, enabling sophisticated analyses of your vault.
    - NetworkX also supports the ability to export your graph to other data formats.
    - When instantiating a `vault`, the analysis can also be filtered on specific subdirectories.
- **Get summary stats about your notes & files, e.g. number of backlinks and wikilinks, in a Pandas dataframe**
    - Get the dataframe via `vault.get_note_metadata()` (notes / md files), `vault.get_media_file_metadata()` (media files that can be embedded in notes) and `vault.get_canvas_file_metadata()` (canvas files).
- **Retrieve detail about your notes' links and metadata as built-in Python types**
    - The main indices of files are `md_file_index`, `media_file_index` and `canvas_file_index` (canvas files).
    - Check whether files included as links in the vault actually exist, via `vault` attributes like `nonexistent_notes`, `nonexistent_media_files` and `nonexistent_canvas_files`.
    - Check whether actual files are isolated in the graph ('orphans'), via `vault` attributes like `isolated_notes`, `isolated_media_files` and `isolated_canvas_files`.
    - You can access all the note & file links in one place, or you can load them for an individual note:
        - e.g. `vault.backlinks_index` for all backlinks in the vault
        - e.g. `vault.get_backlinks(<NOTE>)` for the backlinks of an individual note
    - **md note info:**
        - The various types of links:
            - Wikilinks (incl. header links, links with alt text)
            - Embedded files
            - Backlinks
            - Markdown links
        - Front matter via `vault.get_front_matter(<NOTE>)` or `vault.front_matter_index`
        - Tags via `vault.get_tags(<NOTE>)` or `vault.tags_index`.  Nested tags are supported.
        - LaTeX math via `vault.get_math(<NOTE>)` or `vault.math_index`
        - As long as `gather()` is called:
            - Get source text of note (via `vault.get_source_text(<NOTE>)`).  This tries to represent how a note's text appears in Obsidian's 'source mode'.
            - Get readable text of note (via `vault.get_readable_text(<NOTE>)`).  This tries to reduce note text to minimal markdown formatting, e.g. preserving paragraphs, headers and punctuation.  Only slight processing is needed for various forms of NLP analysis.
    - **canvas file info:**
        - The JSON content of each canvas file is stored as a Python dict in `vault.canvas_content_index`
        - Data to recreate the layout of content in a canvas file via the `vault.canvas_graph_detail_index` dict

Check out the functionality in the demo repo.  Launch the '15 minutes' demo in a virtual machine via Binder:

[![Documentation](https://img.shields.io/badge/docs-obsidiantools--demo-orange)](https://github.com/mfarragher/obsidiantools-demo) [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/mfarragher/obsidiantools-demo/HEAD?filepath=obsidiantools%20in%2015%20minutes.ipynb)

There are other API features that try to mirror the Obsidian.md app, for your convenience when working with Python, but they are no substitute for the interactivity of the app!

The text from vault notes goes through this process: markdown → split out front matter from text → HTML → ASCII plaintext.

## ⏲️ Installation
`pip install obsidiantools`

Requires Python 3.9 or higher.

## 🖇️ Dependencies
- Main libraries:
    - `markdown`
    - `pymdown-extensions`
    - `html2text`
    - `pandas`
    - `numpy`
    - `networkx`
- Libraries for front matter and HTML:
    - `python-frontmatter`
    - `beautifulsoup4`
    - `lxml`
    - `bleach`

All of these libraries are needed so that the package can separate note text from front matter in a generalised approach.

## 🏗️ Tests
A small 'dummy vault' vault of lipsum notes is in `tests/vault-stub` (generated with help of the [lorem-markdownum](https://github.com/jaspervdj/lorem-markdownum) tool).  Sense-checking on the API functionality was also done on a personal vault of over 800 notes.

I am not sure how the parsing will work outside of Latin languages - if you have ideas on how that can be supported feel free to suggest a feature or pull request.

## ⚖️ Licence
Modified BSD (3-clause)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/mfarragher/obsidiantools",
    "name": "obsidiantools",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "obsidian,obsidian.md,knowledge,note-taking,notes,knowledge management,connected notes",
    "author": "Mark Farragher",
    "author_email": "",
    "download_url": "",
    "platform": null,
    "description": "[![PyPI version](https://badge.fury.io/py/obsidiantools.svg)](https://badge.fury.io/py/obsidiantools) [![PyPI version](https://img.shields.io/pypi/pyversions/obsidiantools.svg)](https://badge.fury.io/py/obsidiantools)\n[![Licence](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://github.com/mfarragher/obsidiantools/blob/main/LICENSE) [![Documentation](https://img.shields.io/badge/docs-obsidiantools--demo-orange)](https://github.com/mfarragher/obsidiantools-demo) [![codecov](https://codecov.io/gh/mfarragher/obsidiantools/branch/main/graph/badge.svg)](https://codecov.io/gh/mfarragher/obsidiantools)\n\n# obsidiantools \ud83e\udea8\u2692\ufe0f\n**obsidiantools** is a Python package for getting structured metadata about your [Obsidian.md notes](https://obsidian.md/) and analysing your vault.  Complement your Obsidian workflows by getting metrics and detail about all your notes in one place through the widely-used Python data stack.\n\nIt's incredibly easy to explore structured data on your vault through this fluent interface.  This is all the code you need to generate a `vault` object that stores all the data:\n\n```python\nimport obsidiantools.api as otools\n\nvault = otools.Vault(<VAULT_DIRECTORY>).connect().gather()\n```\n\nThese are the basics of the method calls:\n- `connect()`: connect your notes together in a graph structure and get metadata on links (e.g. wikilinks, backlinks, etc.)  There ais the option to support the inclusion of 'attachment' files in the graph.\n- `gather()`: gather the plaintext content from your notes in one place.  This includes the 'source text' that represent how your notes are written.  There are arguments to support what text you want to remove, e.g. remove code.\n\nSee some of the **key features** below - all accessible from the `vault` object either through a method or an attribute.\n\nThe package is built to support the 'shortest path when possible' option for links.  This should cover the vast majority of vaults that people create.  See the [wiki](https://github.com/mfarragher/obsidiantools/wiki) for more info on what sort of wikilink syntax is not well-supported and how the graph may be slightly different to what you see in the Obsidian app.\n\n## \ud83d\udca1 Key features\nThis is how **`obsidiantools`** can complement your workflows for note-taking:\n- **Access a `networkx` graph of your vault** (`vault.graph`)\n    - NetworkX is the main Python library for network analysis, enabling sophisticated analyses of your vault.\n    - NetworkX also supports the ability to export your graph to other data formats.\n    - When instantiating a `vault`, the analysis can also be filtered on specific subdirectories.\n- **Get summary stats about your notes & files, e.g. number of backlinks and wikilinks, in a Pandas dataframe**\n    - Get the dataframe via `vault.get_note_metadata()` (notes / md files), `vault.get_media_file_metadata()` (media files that can be embedded in notes) and `vault.get_canvas_file_metadata()` (canvas files).\n- **Retrieve detail about your notes' links and metadata as built-in Python types**\n    - The main indices of files are `md_file_index`, `media_file_index` and `canvas_file_index` (canvas files).\n    - Check whether files included as links in the vault actually exist, via `vault` attributes like `nonexistent_notes`, `nonexistent_media_files` and `nonexistent_canvas_files`.\n    - Check whether actual files are isolated in the graph ('orphans'), via `vault` attributes like `isolated_notes`, `isolated_media_files` and `isolated_canvas_files`.\n    - You can access all the note & file links in one place, or you can load them for an individual note:\n        - e.g. `vault.backlinks_index` for all backlinks in the vault\n        - e.g. `vault.get_backlinks(<NOTE>)` for the backlinks of an individual note\n    - **md note info:**\n        - The various types of links:\n            - Wikilinks (incl. header links, links with alt text)\n            - Embedded files\n            - Backlinks\n            - Markdown links\n        - Front matter via `vault.get_front_matter(<NOTE>)` or `vault.front_matter_index`\n        - Tags via `vault.get_tags(<NOTE>)` or `vault.tags_index`.  Nested tags are supported.\n        - LaTeX math via `vault.get_math(<NOTE>)` or `vault.math_index`\n        - As long as `gather()` is called:\n            - Get source text of note (via `vault.get_source_text(<NOTE>)`).  This tries to represent how a note's text appears in Obsidian's 'source mode'.\n            - Get readable text of note (via `vault.get_readable_text(<NOTE>)`).  This tries to reduce note text to minimal markdown formatting, e.g. preserving paragraphs, headers and punctuation.  Only slight processing is needed for various forms of NLP analysis.\n    - **canvas file info:**\n        - The JSON content of each canvas file is stored as a Python dict in `vault.canvas_content_index`\n        - Data to recreate the layout of content in a canvas file via the `vault.canvas_graph_detail_index` dict\n\nCheck out the functionality in the demo repo.  Launch the '15 minutes' demo in a virtual machine via Binder:\n\n[![Documentation](https://img.shields.io/badge/docs-obsidiantools--demo-orange)](https://github.com/mfarragher/obsidiantools-demo) [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/mfarragher/obsidiantools-demo/HEAD?filepath=obsidiantools%20in%2015%20minutes.ipynb)\n\nThere are other API features that try to mirror the Obsidian.md app, for your convenience when working with Python, but they are no substitute for the interactivity of the app!\n\nThe text from vault notes goes through this process: markdown \u2192 split out front matter from text \u2192 HTML \u2192 ASCII plaintext.\n\n## \u23f2\ufe0f Installation\n`pip install obsidiantools`\n\nRequires Python 3.9 or higher.\n\n## \ud83d\udd87\ufe0f Dependencies\n- Main libraries:\n    - `markdown`\n    - `pymdown-extensions`\n    - `html2text`\n    - `pandas`\n    - `numpy`\n    - `networkx`\n- Libraries for front matter and HTML:\n    - `python-frontmatter`\n    - `beautifulsoup4`\n    - `lxml`\n    - `bleach`\n\nAll of these libraries are needed so that the package can separate note text from front matter in a generalised approach.\n\n## \ud83c\udfd7\ufe0f Tests\nA small 'dummy vault' vault of lipsum notes is in `tests/vault-stub` (generated with help of the [lorem-markdownum](https://github.com/jaspervdj/lorem-markdownum) tool).  Sense-checking on the API functionality was also done on a personal vault of over 800 notes.\n\nI am not sure how the parsing will work outside of Latin languages - if you have ideas on how that can be supported feel free to suggest a feature or pull request.\n\n## \u2696\ufe0f Licence\nModified BSD (3-clause)\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Obsidian Tools - a Python interface for Obsidian.md vaults",
    "version": "0.10.0",
    "split_keywords": [
        "obsidian",
        "obsidian.md",
        "knowledge",
        "note-taking",
        "notes",
        "knowledge management",
        "connected notes"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a34762000518009befebb55956051f9f4955d14765d6e5e39ff0441162c2d5f",
                "md5": "a23270b96aa4932f7972061d3f82057e",
                "sha256": "c590931cfc77f8d7eb04f224a4f0839a46c6dce612d9cf9f14e8196d9c81dc08"
            },
            "downloads": -1,
            "filename": "obsidiantools-0.10.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a23270b96aa4932f7972061d3f82057e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 25326,
            "upload_time": "2023-01-08T13:29:37",
            "upload_time_iso_8601": "2023-01-08T13:29:37.823036Z",
            "url": "https://files.pythonhosted.org/packages/5a/34/762000518009befebb55956051f9f4955d14765d6e5e39ff0441162c2d5f/obsidiantools-0.10.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-08 13:29:37",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "mfarragher",
    "github_project": "obsidiantools",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "obsidiantools"
}
        
Elapsed time: 0.03237s