Metadata-Version: 2.1
Name: notiontomd
Version: 0.1.3
Summary: convert notion page content to markdown
Home-page: https://github.com/akkuman/notiontomd
Author: Akkuman
Author-email: akkumans@qq.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# notiontomd

Convert notion page content to markdown

## Usage

### Quickstart

`pip install notiontomd`

```python
from notiontomd import NotionToMarkdown

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

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

