Metadata-Version: 2.4
Name: notion-to-markdown
Version: 0.1.6
Summary: A package to convert Notion content into Markdown format
Home-page: https://github.com/atb00ker/notion-to-markdown
Author: Ajay Tripathi
Author-email: ajay39in@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/atb00ker/notion-to-markdown/issues
Project-URL: Source Code, https://github.com/atb00ker/notion-to-markdown
Keywords: Convert,Notion,Markdown
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx
Requires-Dist: pytablewriter
Requires-Dist: notion-client
Provides-Extra: async
Requires-Dist: asyncio; extra == "async"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Notion to Markdown (Python Version)

The original author of this work is [Wei Xiang](xiangweiqaz@gmail.com), please go to the [original repository](https://github.com/SwordAndTea/notion-to-md-py) for more details.

I have only audited the code for usage within my company and made minor changes for compatibility with my code.

---

This is the **Python implementation** of nodejs version of [notion-to-md](https://github.com/souvikinator/notion-to-md),
a tool that converts Notion pages into Markdown files.

## Installation

Install the package via pip:

```bash
pip install notion-to-markdown
```

## Usage

### Sync Version

```python
from notion_to_markdown import MarkdownProvider
from notion_client import Client

notion = Client(auth="your-auth-token")
n2m = MarkdownProvider(notion)
md_str = n2m.get_markdown_string("page-id")

with open("output.md", "w") as f:
    f.write(md_str)
```

### Async Version

```python
from notion_client import AsyncClient
from notion_to_markdown import MarkdownProvider

notion = AsyncClient(auth="your-auth-token")
n2m = MarkdownProvider(notion)
md_str = n2m.get_markdown_string_async("page-id")

with open("output.md", "w") as f:
    f.write(md_str)
```

Replace `your-auth-token` and `page-id` with the appropriate values from your Notion account.

## Authentication with Notion API

1. Create an integration in your Notion account and get the `API key`.
2. Share your database with the integration to allow access.
3. Retrieve your `Database ID` and `Page ID` from the Notion app.

## Requirements

- Python 3.7 or later
- Notion API key

## Limitations

- The tool relies on the Notion API, and features are limited to what the API supports.
- Embedding or downloading files other than images is not supported.

## Contributing

Contributions are welcome! Feel free to open issues or submit pull requests to improve the functionality or fix bugs.

1. Fork the repository.
2. Create a new branch for your feature or bug fix.
3. Submit a pull request with a clear description of your changes.

## License

This project is licensed under the [MIT License](LICENSE).
