Metadata-Version: 2.1
Name: markdownify-notion
Version: 0.4
Summary: A small package to markdownify notion blocks.
Home-page: https://github.com/chekos/markdownify-notion
Author: Sergio Sanchez
License: Apache License, Version 2.0
Project-URL: Issues, https://github.com/chekos/markdownify-notion/issues
Project-URL: CI, https://github.com/chekos/markdownify-notion/actions
Project-URL: Changelog, https://github.com/chekos/markdownify-notion/releases
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: test
License-File: LICENSE

# markdownify-notion

[![PyPI](https://img.shields.io/pypi/v/markdownify-notion.svg)](https://pypi.org/project/markdownify-notion/)
[![Changelog](https://img.shields.io/github/v/release/chekos/markdownify-notion?include_prereleases&label=changelog)](https://github.com/chekos/markdownify-notion/releases)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/chekos/markdownify-notion/blob/main/LICENSE)

A small package to markdownify notion blocks.

## Installation

Install this library using `pip`:

    $ pip install markdownify-notion

## Usage

Usage instructions go here.

## Development

To contribute to this library, first checkout the code. Then create a new virtual environment:

    cd markdownify-notion
    python -m venv venv
    source venv/bin/activate

Or if you are using `pipenv`:

    pipenv shell

Now install the dependencies and test dependencies:

    pip install -e '.[test]'

To run the tests:

    pytest
