Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/DamianFlynn/py-obsidian-parser
Obsidian parser, used to create the content for Hugo SSG
https://github.com/DamianFlynn/py-obsidian-parser
Last synced: about 2 months ago
JSON representation
Obsidian parser, used to create the content for Hugo SSG
- Host: GitHub
- URL: https://github.com/DamianFlynn/py-obsidian-parser
- Owner: DamianFlynn
- Created: 2022-11-30T23:58:13.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-15T23:22:10.000Z (almost 2 years ago)
- Last Synced: 2024-08-08T00:43:51.334Z (5 months ago)
- Language: Python
- Size: 44.9 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- project-awesome - DamianFlynn/py-obsidian-parser - Obsidian parser, used to create the content for Hugo SSG (Python)
README
# Obsidian Parser
A small library for a Obsidian Vaults to parse its content. One example is to prepare the content to publishing with static site generators, Hugo as an example.
## Installation
```bash
pip install obsidian-parser
```## Get started
How to multiply one number by another with this lib:
```python
# Import Multiplication from your library
from obsidian_parser import Multiplication# Instantiate a Multiplication object
multiplication = Multiplication(2)# Call the multiply method
print(multiplication.multiply(5))
```