Parse the full content from your documents into markdown format.
AnyParser
from any_parser import AnyParser ap = AnyParser(api_key="...") md_output, total_time = ap.parse(file_path="/path/to/your/file")
from any_parser import AnyParser ap = AnyParser(api_key="...") file_id = ap.async_parse(file_path="/path/to/your/file") md = ap.async_fetch(file_id=file_id)