adityarathod / pyandoc

Python wrapper for Pandoc—the universal document converter.
https://pypi.python.org/pypi/pyandoc/
MIT License
213 stars 32 forks source link

Incorrect info in readme #15

Closed hedleyroos closed 8 years ago

hedleyroos commented 10 years ago

The readme says pandoc.PANDOC_PATH = '/usr/bin/pandoc' but it should be pandoc.core.PANDOC_PATH = '/usr/bin/pandoc'.

fractaledmind commented 9 years ago

Not true, the __init__.py file imports all of core.py, making it available via the package name alone.

msabramo commented 9 years ago

Yup, __init.py__ has:

from core import *

This can be closed.

andresmrm commented 9 years ago

pandoc.PANDOC_PATH = '/usr/bin/pandoc' Didn't worked here, but pandoc.core.PANDOC_PATH = '/usr/bin/pandoc' yes. So I confirm the error on Python2. (Thanks for the tip @hedleyroos )

msabramo commented 9 years ago

You should just use pypandoc, as this project looks to no longer be maintained.

andresmrm commented 9 years ago

Good point...

kennethreitz commented 8 years ago

@msabramo I hadn't seen this one, thanks!