Metadata-Version: 2.1
Name: notion-hugo
Version: 0.1.6
Summary: convert notion page content to markdown
Home-page: https://github.com/gclm/notion2md
Author: gclm
Author-email: gclmit@163.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# notion-hugo

Convert notion page content to markdown

## Usage

### Quickstart

`pip install notion-hugo`

```python
from notion import NotionToMarkdown

token = os.environ['token']
page_id = os.environ['page_id']

print(Notion2Markdown(token, page_id).parse())
```


