Skip to main content

Thin wrapper for pandoc.

Project description

pypandoc provides a thin wrapper for pandoc, a universal document converter.

Usage

The basic invocation looks like this: pypandoc.convert('input', 'output format'). pypandoc tries to infer the type of the input automatically. If it’s a file, it will load it. In case you pass a string, you can define the format using the parameter. The example below should clarify the usage:

import pypandoc

output = pypandoc.convert('somefile.md', 'rst')

# alternatively you could just pass some string to it and define its format
output = pypandoc.convert('#some title', 'rst', format='md')
# output == 'some title\r\n==========\r\n\r\n'

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

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

Please refer to pandoc -h and the official documentation for further details.

See also pyandoc for an alternative implementation.

Django Service Example

See services.py at the project root for implementation. Use it like this:

from .services import PandocDocxService

service = PandocDocxService()
doc_file = service.generate(html='<html><body><h1>Heading 1</h1><p>testing testing 123</p></body></html>')

Contributors

License

pypandoc is available under MIT license. See LICENSE for more details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pypandoc-0.8.6.tar.gz (4.0 kB view details)

Uploaded Source

File details

Details for the file pypandoc-0.8.6.tar.gz.

File metadata

  • Download URL: pypandoc-0.8.6.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pypandoc-0.8.6.tar.gz
Algorithm Hash digest
SHA256 35a2d02d1e231e3ec646152ca904885139e35e74f1c9a621a374d1a7f8d7e4c1
MD5 6b24b3171af082ea2533df6ea7b44845
BLAKE2b-256 7c1a6d69ba0e2084ab4f477dbf6dd547d9ac1ffb5a0ecf3efe402c3502695a27

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page