Metadata-Version: 2.1
Name: notion-hugo
Version: 0.1.3
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

# notion2md

Convert notion page content to markdown

## Usage

### Quickstart

`pip install notion2md`

```python
from notion2md import NotionToMarkdown

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

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


