Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 473 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 473 Bytes

morpheus-python-lib

A Python library for interacting with the Morpheus API

Installation

pip install morpheuslib

Example

Note: Morpheus requires Python 3.5

import sys
from morpheuslib import morpheus

plain_text = morpheus.convert("pdf", "html", "http://milesbudden.com/morpheus.pdf")

# This may be slow with some files. Try writing to a file if it takes too long.
morpheus.output(plain_text)