pypandoc


Namepypandoc JSON
Version 1.12 PyPI version JSON
download
home_pagehttps://github.com/JessicaTegner/pypandoc
SummaryThin wrapper for pandoc.
upload_time2023-10-17 01:53:19
maintainer
docs_urlNone
authorb'Juho Veps\xc3\xa4l\xc3\xa4inen'
requires_python>=3.6
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pypandoc

[![Build Status](https://github.com/JessicaTegner/pypandoc/actions/workflows/ci.yaml/badge.svg)](https://github.com/JessicaTegner/pypandoc/actions/workflows/ci.yaml)
[![GitHub Releases](https://img.shields.io/github/tag/JessicaTegner/pypandoc.svg)](https://github.com/JessicaTegner/pypandoc/releases)
[![Pypandoc PyPI Version](https://img.shields.io/pypi/v/pypandoc?label=pypandoc+pypi+version)](https://pypi.org/project/pypandoc/)
[![Pypandoc Binary PyPI Version](https://img.shields.io/pypi/v/pypandoc_binary?label=pypandoc+binary+pypi+version)](https://pypi.org/project/pypandoc_binary/)
![PyPandoc PyPi Downloads](https://img.shields.io/pypi/dm/pypandoc)
![PyPandoc Binary PyPI Downloads](https://img.shields.io/pypi/dm/pypandoc_binary)
[![conda version](https://anaconda.org/conda-forge/pypandoc/badges/version.svg)](https://anaconda.org/conda-forge/pypandoc/)
[![Development Status](https://img.shields.io/pypi/status/pypandoc.svg)](https://pypi.python.org/pypi/pypandoc/)
[![PyPandoc Python version](https://img.shields.io/pypi/pyversions/pypandoc.svg)](https://pypi.python.org/pypi/pypandoc/)
[![PyPandoc Binary Python version](https://img.shields.io/pypi/pyversions/pypandoc_binary.svg)](https://pypi.python.org/pypi/pypandoc_binary/)
![License](https://img.shields.io/pypi/l/pypandoc.svg)

Pypandoc provides a thin wrapper for [pandoc](https://pandoc.org), a universal
document converter.

## Installation

Pypandoc uses pandoc, so it needs an available installation of pandoc. Pypandoc provides 2 packages, "pypandoc" and "pypandoc_binary", with the second one including pandoc out of the box.
The 2 packages are identical, with the only difference being that one includes pandoc, while the other don't.

If pandoc is already installed (i.e. pandoc is in the `PATH`), pypandoc uses the version with the
higher version number, and if both are the same, the already installed version. See [Specifying the location of pandoc binaries](#specifying-the-location-of-pandoc-binaries) for more.

To use pandoc filters, you must have the relevant filters installed on your machine.

### Installing via pip

If you [want to install pandoc yourself](#Installing-pandoc) or are on a unsupported platform, you'll need to install "pypandoc" and  [install pandoc manually](#Installing-pandoc)

```
pip install pypandoc
```


If you want pandoc included out of the box, you can utilize our pypandoc_binary package, which are identical to the "pypandoc" package, but with pandoc included.

```
pip install pypandoc_binary
```

Prebuilt [wheels for Windows and Mac OS X](https://pypi.python.org/pypi/pypandoc_binary/)

If you use Linux and have [your own wheelhouse](https://wheel.readthedocs.org/en/latest/#usage),
you can build a wheel which include pandoc with
`python setup_binary.py download_pandoc; python setup.py bdist_wheel`. Be aware that this works only
on 64bit intel systems, as we only download it from the
[official releases](https://github.com/jgm/pandoc/releases).

### Installing via conda

Pypandoc is included in [conda-forge](https://conda-forge.github.io/). The conda packages will
also install the pandoc package, so pandoc is available in the installation.

Install via `conda install -c conda-forge pypandoc`.

You can also add the channel to your conda config via
`conda config --add channels conda-forge`. This makes it possible to
use `conda install pypandoc` directly and also lets you update via `conda update pypandoc`.

### Installing pandoc

If you don't already have pandoc on your system, or have installed the pypandoc_binary package, which includes pandoc, you need to install pandoc by yourself.

#### Installing pandoc via pypandoc

Installing via pypandoc is possible on Windows, Mac OS X or Linux (Intel-based, 64-bit):

```python
pip install pypandoc
from pypandoc.pandoc_download import download_pandoc
# see the documentation how to customize the installation path
# but be aware that you then need to include it in the `PATH`
download_pandoc()
```

The default install location is included in the search path for pandoc, so you
don't need to add it to the `PATH`.

By default, the latest pandoc version is installed. If you want to specify your own version, say 1.19.1, use `download_pandoc(version='1.19.1')` instead.

#### Installing pandoc manually

Installing manually via the system mechanism is also possible. Such installation mechanism
make pandoc available on many more platforms:

- Ubuntu/Debian: `sudo apt-get install pandoc`
- Fedora/Red Hat: `sudo yum install pandoc`
- Arch: `sudo pacman -S pandoc`
- Mac OS X with Homebrew: `brew install pandoc pandoc-citeproc Caskroom/cask/mactex`
- Machine with Haskell: `cabal-install pandoc`
- Windows: There is an installer available
  [here](https://pandoc.org/installing.html)
- [FreeBSD with pkg:](https://www.freshports.org/textproc/hs-pandoc/) `pkg install hs-pandoc`
- Or see [Pandoc - Installing pandoc](https://pandoc.org/installing.html)

Be aware that not all install mechanisms put pandoc in the `PATH`, so you either
have to change the `PATH` yourself or set the full `PATH` to pandoc in
`PYPANDOC_PANDOC`. See the next section for more information.

### Specifying the location of pandoc binaries

You can point to a specific pandoc version by setting the environment variable
`PYPANDOC_PANDOC` to the full `PATH` to the pandoc binary
(`PYPANDOC_PANDOC=/home/x/whatever/pandoc` or `PYPANDOC_PANDOC=c:\pandoc\pandoc.exe`).
If this environment variable is set, this is the only place where pandoc is searched for.

In certain cases, e.g. pandoc is installed but a web server with its own user
cannot find the binaries, it is useful to specify the location at runtime:

```python
import os
os.environ.setdefault('PYPANDOC_PANDOC', '/home/x/whatever/pandoc')
```

## Usage

There are two basic ways to use pypandoc: with input files or with input
strings.


```python
import pypandoc

# With an input file: it will infer the input format from the filename
output = pypandoc.convert_file('somefile.md', 'rst')

# ...but you can overwrite the format via the `format` argument:
output = pypandoc.convert_file('somefile.txt', 'rst', format='md')

# alternatively you could just pass some string. In this case you need to
# define the input format:
output = pypandoc.convert_text('# some title', 'rst', format='md')
# output == 'some title\r\n==========\r\n\r\n'
```

`convert_text` expects this string to be unicode or utf-8 encoded bytes. `convert_*` will always
return a unicode string.

It's also possible to directly let pandoc write the output to a file. This is the only way to
convert to some output formats (e.g. odt, docx, epub, epub3, pdf). In that case `convert_*()` will
return an empty string.

```python
import pypandoc

output = pypandoc.convert_file('somefile.md', 'docx', outputfile="somefile.docx")
assert output == ""
```


It's also possible to specify multiple input files to pandoc, either as absolute paths, relative paths or file patterns.

```python
import pypandoc

# convert all markdown files in a chapters/ subdirectory.
pypandoc.convert_file('chapters/*.md', 'docx', outputfile="somefile.docx")

# convert all markdown files in the book1 and book2 directories.
pypandoc.convert_file(['book1/*.md', 'book2/*.md'], 'docx', outputfile="somefile.docx")

# convert the front from another drive, and all markdown files in the chapter directory.
pypandoc.convert_file(['D:/book_front.md', 'book2/*.md'], 'docx', outputfile="somefile.docx")
```


pathlib is also supported.

```python
import pypandoc
from pathlib import Path

# single file
input = Path('somefile.md')
output = input.with_suffix('.docx')
pypandoc.convert_file(input, 'docx', outputfile=output)

# convert all markdown files in a chapters/ subdirectory.
pypandoc.convert_file(Path('chapters').glob('*.md'), 'docx', outputfile="somefile.docx")

# convert all markdown files in the book1 and book2 directories.
pypandoc.convert_file([*Path('book1').glob('*.md'), *Path('book2').glob('*.md')], 'docx', outputfile="somefile.docx")
# pathlib globs must be unpacked if they are inside lists.
```

In addition to `format`, it is possible to pass `extra_args`.
That makes it possible to access various pandoc options easily.

```python
output = pypandoc.convert_text(
    '<h1>Primary Heading</h1>',
    'md', format='html',
    extra_args=['--atx-headers'])
# output == '# Primary Heading\r\n'
output = pypandoc.convert_text(
    '# Primary Heading',
    'html', format='md',
    extra_args=['--base-header-level=2'])
# output == '<h2 id="primary-heading">Primary Heading</h2>\r\n'
```

pypandoc now supports easy addition of
[pandoc filters](https://pandoc.org/scripting.html).

```python
filters = ['pandoc-citeproc']
pdoc_args = ['--mathjax',
             '--smart']
output = pypandoc.convert_file(filename,
                               to='html5',
                               format='md',
                               extra_args=pdoc_args,
                               filters=filters)
```

Please pass any filters in as a list and not as a string.

Please refer to `pandoc -h` and the
[official documentation](https://pandoc.org/MANUAL.html) for further details.

## Dealing with Formatting Arguments

Pandoc supports custom formatting though `-V` parameter. In order to use it through
pypandoc, use code such as this:

```python
output = pypandoc.convert_file('demo.md', 'pdf', outputfile='demo.pdf',
  extra_args=['-V', 'geometry:margin=1.5cm'])
```

> Note: it's important to separate `-V` and its argument within a list like that or else
it won't work. This gotcha has to do with the way
[`subprocess.Popen`](https://docs.python.org/2/library/subprocess.html#subprocess.Popen) works.

## Logging Messages

Pypandoc logs messages using the [Python logging library](https://docs.python.org/3/library/logging.html).
By default, it will send messages to the console, including any messages 
generated by Pandoc. If desired, this behaviour can be changed by adding
[handlers](https://docs.python.org/3/library/logging.html#handler-objects) to 
the pypandoc logger **before calling any functions**. For example, to mute all 
logging add a [null handler](https://docs.python.org/3/library/logging.handlers.html#nullhandler):

```python
import logging
logging.getLogger('pypandoc').addHandler(logging.NullHandler())
```

## Getting Pandoc Version

As it can be useful sometimes to check what pandoc version is available at your system or which
particular pandoc binary is used by pypandoc. For that, pypandoc provides the following
utility functions. Example:

```
print(pypandoc.get_pandoc_version())
print(pypandoc.get_pandoc_path())
print(pypandoc.get_pandoc_formats())
```

## Related

* [pydocverter](https://github.com/msabramo/pydocverter) is a client for a service called
[Docverter](https://www.docverter.com), which offers pandoc as a service (plus some extra goodies).
* See [pyandoc](https://pypi.python.org/pypi/pyandoc/) for an alternative implementation of a pandoc
wrapper from Kenneth Reitz. This one hasn't been active in a while though.
* See [panflute](https://github.com/sergiocorreia/panflute) which provides `convert_text` similar to pypandoc's. Its focus is on writing and running pandoc filters though.

## Contributing

Contributions are welcome. When opening a PR, please keep the following guidelines in mind:

1. Before implementing, please open an issue for discussion.
2. Make sure you have tests for the new logic.
3. Make sure your code passes `flake8 pypandoc/*.py tests.py`
4. Add yourself to contributors at `README.md` unless you are already there. In that case tweak your contributions.

Note that for citeproc tests to pass you'll need to have [pandoc-citeproc](https://github.com/jgm/pandoc-citeproc) installed. If you installed a prebuilt wheel or conda package, it is already included.

## Contributors

* [Jessica Tegner](https://github.com/JessicaTegner) - New maintainer as of 1. Juli 2021
* [Valentin Haenel](https://github.com/esc) - String conversion fix
* [Daniel Sanchez](https://github.com/ErunamoJAZZ) - Automatic parsing of input/output formats
* [Thomas G.](https://github.com/coldfix) - Python 3 support
* [Ben Jao Ming](https://github.com/benjaoming) - Fail gracefully if pandoc is missing
* [Ross Crawford-d'Heureuse](https://github.com/rosscdh) - Encode input in UTF-8 and add Django
  example
* [Michael Chow](https://github.com/machow) - Decode output in UTF-8
* [Janusz Skonieczny](https://github.com/wooyek) - Support Windows newlines and allow encoding to
  be specified.
* [gabeos](https://github.com/gabeos) - Fix help parsing
* [Marc Abramowitz](https://github.com/msabramo) - Make `setup.py` fail hard if pandoc is
  missing, Travis, Dockerfile, PyPI badge, Tox, PEP-8, improved documentation
* [Daniel L.](https://github.com/mcktrtl) - Add `extra_args` example to README
* [Amy Guy](https://github.com/rhiaro) - Exception handling for unicode errors
* [Florian Eßer](https://github.com/flesser) - Allow Markdown extensions in output format
* [Philipp Wendler](https://github.com/PhilippWendler) - Allow Markdown extensions in input format
* [Jan Katins](https://github.com/jankatins) - Handling output to a file, Travis to work on newer version of pandoc, return code checking, get_pandoc_version. Helped to fix the Travis build, new `convert_*` API. Former maintainer of pypandoc
* [Aaron Gonzales](https://github.com/xysmas) - Added better filter handling
* [David Lukes](https://github.com/dlukes) - Enabled input from non-plain-text files and made sure tests clean up template files correctly if they fail
* [valholl](https://github.com/valholl) - Set up licensing information correctly and include examples to distribution version
* [Cyrille Rossant](https://github.com/rossant) - Fixed bug by trimming out stars in the list of pandoc formats. Helped to fix the Travis build.
* [Paul Osborne](https://github.com/posborne) - Don't require pandoc to install pypandoc.
* [Felix Yan](https://github.com/felixonmars) - Added installation instructions for Arch Linux.
* [Kolen Cheung](https://github.com/ickc) - Implement `_get_pandoc_urls` for installing arbitrary version as well as the latest version of pandoc. Minor: README, Travis, setup.py.
* [Rebecca Heineman](https://github.com/burgerbecky) - Added scanning code for finding pandoc in Windows
* [Andrew Barraford](https://github.com/abarrafo) - Download destination.
* [Jesse Widner](https://github.com/jwidner) & [Dominic Thorn](https://github.com/domvwt) - Add support for lua filters
* [Alex Kneisel](https://github.com/hey-thanks/) - Added pathlib.Path support to convert_file.
* [Juho Vepsäläinen](https://github.com/bebraw/) - Creator and former maintainer of pypandoc
* [Connor](https://github.com/DisSupEng/) - Updated Dockerfile to Python 3.9 image and added docker compose file

## License

Pypandoc is available under MIT license. See LICENSE for more details. Pandoc itself is [available under the GPL2 license](https://github.com/jgm/pandoc/blob/master/COPYING.md).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/JessicaTegner/pypandoc",
    "name": "pypandoc",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "",
    "author": "b'Juho Veps\\xc3\\xa4l\\xc3\\xa4inen'",
    "author_email": "bebraw@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/2e/56/8c544ab77f24627a71d3000cbe426a3fd28b52452250ff5ba656adc6023c/pypandoc-1.12.tar.gz",
    "platform": null,
    "description": "# pypandoc\n\n[![Build Status](https://github.com/JessicaTegner/pypandoc/actions/workflows/ci.yaml/badge.svg)](https://github.com/JessicaTegner/pypandoc/actions/workflows/ci.yaml)\n[![GitHub Releases](https://img.shields.io/github/tag/JessicaTegner/pypandoc.svg)](https://github.com/JessicaTegner/pypandoc/releases)\n[![Pypandoc PyPI Version](https://img.shields.io/pypi/v/pypandoc?label=pypandoc+pypi+version)](https://pypi.org/project/pypandoc/)\n[![Pypandoc Binary PyPI Version](https://img.shields.io/pypi/v/pypandoc_binary?label=pypandoc+binary+pypi+version)](https://pypi.org/project/pypandoc_binary/)\n![PyPandoc PyPi Downloads](https://img.shields.io/pypi/dm/pypandoc)\n![PyPandoc Binary PyPI Downloads](https://img.shields.io/pypi/dm/pypandoc_binary)\n[![conda version](https://anaconda.org/conda-forge/pypandoc/badges/version.svg)](https://anaconda.org/conda-forge/pypandoc/)\n[![Development Status](https://img.shields.io/pypi/status/pypandoc.svg)](https://pypi.python.org/pypi/pypandoc/)\n[![PyPandoc Python version](https://img.shields.io/pypi/pyversions/pypandoc.svg)](https://pypi.python.org/pypi/pypandoc/)\n[![PyPandoc Binary Python version](https://img.shields.io/pypi/pyversions/pypandoc_binary.svg)](https://pypi.python.org/pypi/pypandoc_binary/)\n![License](https://img.shields.io/pypi/l/pypandoc.svg)\n\nPypandoc provides a thin wrapper for [pandoc](https://pandoc.org), a universal\ndocument converter.\n\n## Installation\n\nPypandoc uses pandoc, so it needs an available installation of pandoc. Pypandoc provides 2 packages, \"pypandoc\" and \"pypandoc_binary\", with the second one including pandoc out of the box.\nThe 2 packages are identical, with the only difference being that one includes pandoc, while the other don't.\n\nIf pandoc is already installed (i.e. pandoc is in the `PATH`), pypandoc uses the version with the\nhigher version number, and if both are the same, the already installed version. See [Specifying the location of pandoc binaries](#specifying-the-location-of-pandoc-binaries) for more.\n\nTo use pandoc filters, you must have the relevant filters installed on your machine.\n\n### Installing via pip\n\nIf you [want to install pandoc yourself](#Installing-pandoc) or are on a unsupported platform, you'll need to install \"pypandoc\" and  [install pandoc manually](#Installing-pandoc)\n\n```\npip install pypandoc\n```\n\n\nIf you want pandoc included out of the box, you can utilize our pypandoc_binary package, which are identical to the \"pypandoc\" package, but with pandoc included.\n\n```\npip install pypandoc_binary\n```\n\nPrebuilt [wheels for Windows and Mac OS X](https://pypi.python.org/pypi/pypandoc_binary/)\n\nIf you use Linux and have [your own wheelhouse](https://wheel.readthedocs.org/en/latest/#usage),\nyou can build a wheel which include pandoc with\n`python setup_binary.py download_pandoc; python setup.py bdist_wheel`. Be aware that this works only\non 64bit intel systems, as we only download it from the\n[official releases](https://github.com/jgm/pandoc/releases).\n\n### Installing via conda\n\nPypandoc is included in [conda-forge](https://conda-forge.github.io/). The conda packages will\nalso install the pandoc package, so pandoc is available in the installation.\n\nInstall via `conda install -c conda-forge pypandoc`.\n\nYou can also add the channel to your conda config via\n`conda config --add channels conda-forge`. This makes it possible to\nuse `conda install pypandoc` directly and also lets you update via `conda update pypandoc`.\n\n### Installing pandoc\n\nIf you don't already have pandoc on your system, or have installed the pypandoc_binary package, which includes pandoc, you need to install pandoc by yourself.\n\n#### Installing pandoc via pypandoc\n\nInstalling via pypandoc is possible on Windows, Mac OS X or Linux (Intel-based, 64-bit):\n\n```python\npip install pypandoc\nfrom pypandoc.pandoc_download import download_pandoc\n# see the documentation how to customize the installation path\n# but be aware that you then need to include it in the `PATH`\ndownload_pandoc()\n```\n\nThe default install location is included in the search path for pandoc, so you\ndon't need to add it to the `PATH`.\n\nBy default, the latest pandoc version is installed. If you want to specify your own version, say 1.19.1, use `download_pandoc(version='1.19.1')` instead.\n\n#### Installing pandoc manually\n\nInstalling manually via the system mechanism is also possible. Such installation mechanism\nmake pandoc available on many more platforms:\n\n- Ubuntu/Debian: `sudo apt-get install pandoc`\n- Fedora/Red Hat: `sudo yum install pandoc`\n- Arch: `sudo pacman -S pandoc`\n- Mac OS X with Homebrew: `brew install pandoc pandoc-citeproc Caskroom/cask/mactex`\n- Machine with Haskell: `cabal-install pandoc`\n- Windows: There is an installer available\n  [here](https://pandoc.org/installing.html)\n- [FreeBSD with pkg:](https://www.freshports.org/textproc/hs-pandoc/) `pkg install hs-pandoc`\n- Or see [Pandoc - Installing pandoc](https://pandoc.org/installing.html)\n\nBe aware that not all install mechanisms put pandoc in the `PATH`, so you either\nhave to change the `PATH` yourself or set the full `PATH` to pandoc in\n`PYPANDOC_PANDOC`. See the next section for more information.\n\n### Specifying the location of pandoc binaries\n\nYou can point to a specific pandoc version by setting the environment variable\n`PYPANDOC_PANDOC` to the full `PATH` to the pandoc binary\n(`PYPANDOC_PANDOC=/home/x/whatever/pandoc` or `PYPANDOC_PANDOC=c:\\pandoc\\pandoc.exe`).\nIf this environment variable is set, this is the only place where pandoc is searched for.\n\nIn certain cases, e.g. pandoc is installed but a web server with its own user\ncannot find the binaries, it is useful to specify the location at runtime:\n\n```python\nimport os\nos.environ.setdefault('PYPANDOC_PANDOC', '/home/x/whatever/pandoc')\n```\n\n## Usage\n\nThere are two basic ways to use pypandoc: with input files or with input\nstrings.\n\n\n```python\nimport pypandoc\n\n# With an input file: it will infer the input format from the filename\noutput = pypandoc.convert_file('somefile.md', 'rst')\n\n# ...but you can overwrite the format via the `format` argument:\noutput = pypandoc.convert_file('somefile.txt', 'rst', format='md')\n\n# alternatively you could just pass some string. In this case you need to\n# define the input format:\noutput = pypandoc.convert_text('# some title', 'rst', format='md')\n# output == 'some title\\r\\n==========\\r\\n\\r\\n'\n```\n\n`convert_text` expects this string to be unicode or utf-8 encoded bytes. `convert_*` will always\nreturn a unicode string.\n\nIt's also possible to directly let pandoc write the output to a file. This is the only way to\nconvert to some output formats (e.g. odt, docx, epub, epub3, pdf). In that case `convert_*()` will\nreturn an empty string.\n\n```python\nimport pypandoc\n\noutput = pypandoc.convert_file('somefile.md', 'docx', outputfile=\"somefile.docx\")\nassert output == \"\"\n```\n\n\nIt's also possible to specify multiple input files to pandoc, either as absolute paths, relative paths or file patterns.\n\n```python\nimport pypandoc\n\n# convert all markdown files in a chapters/ subdirectory.\npypandoc.convert_file('chapters/*.md', 'docx', outputfile=\"somefile.docx\")\n\n# convert all markdown files in the book1 and book2 directories.\npypandoc.convert_file(['book1/*.md', 'book2/*.md'], 'docx', outputfile=\"somefile.docx\")\n\n# convert the front from another drive, and all markdown files in the chapter directory.\npypandoc.convert_file(['D:/book_front.md', 'book2/*.md'], 'docx', outputfile=\"somefile.docx\")\n```\n\n\npathlib is also supported.\n\n```python\nimport pypandoc\nfrom pathlib import Path\n\n# single file\ninput = Path('somefile.md')\noutput = input.with_suffix('.docx')\npypandoc.convert_file(input, 'docx', outputfile=output)\n\n# convert all markdown files in a chapters/ subdirectory.\npypandoc.convert_file(Path('chapters').glob('*.md'), 'docx', outputfile=\"somefile.docx\")\n\n# convert all markdown files in the book1 and book2 directories.\npypandoc.convert_file([*Path('book1').glob('*.md'), *Path('book2').glob('*.md')], 'docx', outputfile=\"somefile.docx\")\n# pathlib globs must be unpacked if they are inside lists.\n```\n\nIn addition to `format`, it is possible to pass `extra_args`.\nThat makes it possible to access various pandoc options easily.\n\n```python\noutput = pypandoc.convert_text(\n    '<h1>Primary Heading</h1>',\n    'md', format='html',\n    extra_args=['--atx-headers'])\n# output == '# Primary Heading\\r\\n'\noutput = pypandoc.convert_text(\n    '# Primary Heading',\n    'html', format='md',\n    extra_args=['--base-header-level=2'])\n# output == '<h2 id=\"primary-heading\">Primary Heading</h2>\\r\\n'\n```\n\npypandoc now supports easy addition of\n[pandoc filters](https://pandoc.org/scripting.html).\n\n```python\nfilters = ['pandoc-citeproc']\npdoc_args = ['--mathjax',\n             '--smart']\noutput = pypandoc.convert_file(filename,\n                               to='html5',\n                               format='md',\n                               extra_args=pdoc_args,\n                               filters=filters)\n```\n\nPlease pass any filters in as a list and not as a string.\n\nPlease refer to `pandoc -h` and the\n[official documentation](https://pandoc.org/MANUAL.html) for further details.\n\n## Dealing with Formatting Arguments\n\nPandoc supports custom formatting though `-V` parameter. In order to use it through\npypandoc, use code such as this:\n\n```python\noutput = pypandoc.convert_file('demo.md', 'pdf', outputfile='demo.pdf',\n  extra_args=['-V', 'geometry:margin=1.5cm'])\n```\n\n> Note: it's important to separate `-V` and its argument within a list like that or else\nit won't work. This gotcha has to do with the way\n[`subprocess.Popen`](https://docs.python.org/2/library/subprocess.html#subprocess.Popen) works.\n\n## Logging Messages\n\nPypandoc logs messages using the [Python logging library](https://docs.python.org/3/library/logging.html).\nBy default, it will send messages to the console, including any messages \ngenerated by Pandoc. If desired, this behaviour can be changed by adding\n[handlers](https://docs.python.org/3/library/logging.html#handler-objects) to \nthe pypandoc logger **before calling any functions**. For example, to mute all \nlogging add a [null handler](https://docs.python.org/3/library/logging.handlers.html#nullhandler):\n\n```python\nimport logging\nlogging.getLogger('pypandoc').addHandler(logging.NullHandler())\n```\n\n## Getting Pandoc Version\n\nAs it can be useful sometimes to check what pandoc version is available at your system or which\nparticular pandoc binary is used by pypandoc. For that, pypandoc provides the following\nutility functions. Example:\n\n```\nprint(pypandoc.get_pandoc_version())\nprint(pypandoc.get_pandoc_path())\nprint(pypandoc.get_pandoc_formats())\n```\n\n## Related\n\n* [pydocverter](https://github.com/msabramo/pydocverter) is a client for a service called\n[Docverter](https://www.docverter.com), which offers pandoc as a service (plus some extra goodies).\n* See [pyandoc](https://pypi.python.org/pypi/pyandoc/) for an alternative implementation of a pandoc\nwrapper from Kenneth Reitz. This one hasn't been active in a while though.\n* See [panflute](https://github.com/sergiocorreia/panflute) which provides `convert_text` similar to pypandoc's. Its focus is on writing and running pandoc filters though.\n\n## Contributing\n\nContributions are welcome. When opening a PR, please keep the following guidelines in mind:\n\n1. Before implementing, please open an issue for discussion.\n2. Make sure you have tests for the new logic.\n3. Make sure your code passes `flake8 pypandoc/*.py tests.py`\n4. Add yourself to contributors at `README.md` unless you are already there. In that case tweak your contributions.\n\nNote that for citeproc tests to pass you'll need to have [pandoc-citeproc](https://github.com/jgm/pandoc-citeproc) installed. If you installed a prebuilt wheel or conda package, it is already included.\n\n## Contributors\n\n* [Jessica Tegner](https://github.com/JessicaTegner) - New maintainer as of 1. Juli 2021\n* [Valentin Haenel](https://github.com/esc) - String conversion fix\n* [Daniel Sanchez](https://github.com/ErunamoJAZZ) - Automatic parsing of input/output formats\n* [Thomas G.](https://github.com/coldfix) - Python 3 support\n* [Ben Jao Ming](https://github.com/benjaoming) - Fail gracefully if pandoc is missing\n* [Ross Crawford-d'Heureuse](https://github.com/rosscdh) - Encode input in UTF-8 and add Django\n  example\n* [Michael Chow](https://github.com/machow) - Decode output in UTF-8\n* [Janusz Skonieczny](https://github.com/wooyek) - Support Windows newlines and allow encoding to\n  be specified.\n* [gabeos](https://github.com/gabeos) - Fix help parsing\n* [Marc Abramowitz](https://github.com/msabramo) - Make `setup.py` fail hard if pandoc is\n  missing, Travis, Dockerfile, PyPI badge, Tox, PEP-8, improved documentation\n* [Daniel L.](https://github.com/mcktrtl) - Add `extra_args` example to README\n* [Amy Guy](https://github.com/rhiaro) - Exception handling for unicode errors\n* [Florian E\u00dfer](https://github.com/flesser) - Allow Markdown extensions in output format\n* [Philipp Wendler](https://github.com/PhilippWendler) - Allow Markdown extensions in input format\n* [Jan Katins](https://github.com/jankatins) - Handling output to a file, Travis to work on newer version of pandoc, return code checking, get_pandoc_version. Helped to fix the Travis build, new `convert_*` API. Former maintainer of pypandoc\n* [Aaron Gonzales](https://github.com/xysmas) - Added better filter handling\n* [David Lukes](https://github.com/dlukes) - Enabled input from non-plain-text files and made sure tests clean up template files correctly if they fail\n* [valholl](https://github.com/valholl) - Set up licensing information correctly and include examples to distribution version\n* [Cyrille Rossant](https://github.com/rossant) - Fixed bug by trimming out stars in the list of pandoc formats. Helped to fix the Travis build.\n* [Paul Osborne](https://github.com/posborne) - Don't require pandoc to install pypandoc.\n* [Felix Yan](https://github.com/felixonmars) - Added installation instructions for Arch Linux.\n* [Kolen Cheung](https://github.com/ickc) - Implement `_get_pandoc_urls` for installing arbitrary version as well as the latest version of pandoc. Minor: README, Travis, setup.py.\n* [Rebecca Heineman](https://github.com/burgerbecky) - Added scanning code for finding pandoc in Windows\n* [Andrew Barraford](https://github.com/abarrafo) - Download destination.\n* [Jesse Widner](https://github.com/jwidner) & [Dominic Thorn](https://github.com/domvwt) - Add support for lua filters\n* [Alex Kneisel](https://github.com/hey-thanks/) - Added pathlib.Path support to convert_file.\n* [Juho Veps\u00e4l\u00e4inen](https://github.com/bebraw/) - Creator and former maintainer of pypandoc\n* [Connor](https://github.com/DisSupEng/) - Updated Dockerfile to Python 3.9 image and added docker compose file\n\n## License\n\nPypandoc is available under MIT license. See LICENSE for more details. Pandoc itself is [available under the GPL2 license](https://github.com/jgm/pandoc/blob/master/COPYING.md).\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Thin wrapper for pandoc.",
    "version": "1.12",
    "project_urls": {
        "Homepage": "https://github.com/JessicaTegner/pypandoc"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0135d39a3abc5b0e5ca646081c492b37dc737e0d4563689a78213680de354fc6",
                "md5": "658f25c64b64640adb5aababa1d4c8b5",
                "sha256": "efb4f7d68ead8bec32e22b62f02d5608a1700978b51bfc4af286fd6acfe9d218"
            },
            "downloads": -1,
            "filename": "pypandoc-1.12-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "658f25c64b64640adb5aababa1d4c8b5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 20975,
            "upload_time": "2023-10-17T01:53:00",
            "upload_time_iso_8601": "2023-10-17T01:53:00.411470Z",
            "url": "https://files.pythonhosted.org/packages/01/35/d39a3abc5b0e5ca646081c492b37dc737e0d4563689a78213680de354fc6/pypandoc-1.12-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e568c544ab77f24627a71d3000cbe426a3fd28b52452250ff5ba656adc6023c",
                "md5": "931f6deeaa9f59e3687e7981ba54220f",
                "sha256": "8f44740a9f074e121d81b489f073160421611d4ead62d1b306aeb11aab3c32df"
            },
            "downloads": -1,
            "filename": "pypandoc-1.12.tar.gz",
            "has_sig": false,
            "md5_digest": "931f6deeaa9f59e3687e7981ba54220f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 32338,
            "upload_time": "2023-10-17T01:53:19",
            "upload_time_iso_8601": "2023-10-17T01:53:19.726831Z",
            "url": "https://files.pythonhosted.org/packages/2e/56/8c544ab77f24627a71d3000cbe426a3fd28b52452250ff5ba656adc6023c/pypandoc-1.12.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-17 01:53:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "JessicaTegner",
    "github_project": "pypandoc",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pypandoc"
}
        
Elapsed time: 0.34026s