Metadata-Version: 2.1
Name: notion-hugo
Version: 0.2.4
Summary: convert notion page content to markdown
Home-page: https://github.com/gclm/notion-hugo
Author: gclm
Author-email: gclmit@163.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
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

[![](https://img.shields.io/pypi/v/notion-hugo.svg)](https://pypi.org/project/notion-hugo/)
[![](https://img.shields.io/pypi/pyversions/notion-hugo.svg)](https://pypi.org/project/notion-hugo/)
[![](https://img.shields.io/pypi/l/notion-hugo.svg)](https://pypi.org/project/notion-hugo/)
[![](https://github.com/gclm/notion-hugo/actions/workflows/publish-to-pypi.yml/badge.svg)](https://github.com/gclm/notion-hugo/actions/workflows/publish-to-pypi.yml)

## Usage

### Quickstart

`pip install notion-hugo`

```python
from notion import Notion2Markdown

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

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


