Skip to main content

convertapi

Project description

cloudmersive_convert_api_client

Convert API lets you effortlessly convert file formats and types.

This Python package provides a native API client for Cloudmersive Document Conversion

  • API version: v1
  • Package version: 3.0.4
  • Build package: io.swagger.codegen.languages.PythonClientCodegen

Requirements.

Python 2.7 and 3.4+

Installation & Usage

pip install

If the python package is hosted on Github, you can install directly from Github

pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git

(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)

Then import the package:

import cloudmersive_convert_api_client 

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import cloudmersive_convert_api_client

Getting Started

Please follow the installation procedure and then run the following:

from __future__ import print_function
import time
import cloudmersive_convert_api_client
from cloudmersive_convert_api_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: Apikey
configuration = cloudmersive_convert_api_client.Configuration()
configuration.api_key['Apikey'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Apikey'] = 'Bearer'

# create an instance of the API class
api_instance = cloudmersive_convert_api_client.CompareDocumentApi(cloudmersive_convert_api_client.ApiClient(configuration))
input_file1 = '/path/to/file.txt' # file | First input file to perform the operation on.
input_file2 = '/path/to/file.txt' # file | Second input file to perform the operation on (more than 2 can be supplied).

try:
    # Compare Two Word DOCX
    api_response = api_instance.compare_document_docx(input_file1, input_file2)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CompareDocumentApi->compare_document_docx: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to https://api.cloudmersive.com

Class Method HTTP request Description
CompareDocumentApi compare_document_docx POST /convert/compare/docx Compare Two Word DOCX
ConvertDataApi convert_data_csv_to_json POST /convert/csv/to/json Convert CSV to JSON conversion
ConvertDataApi convert_data_json_to_xml POST /convert/json/to/xml Convert JSON to XML conversion
ConvertDataApi convert_data_xls_to_json POST /convert/xls/to/json Convert Excel (97-2003) XLS to JSON conversion
ConvertDataApi convert_data_xlsx_to_json POST /convert/xlsx/to/json Convert Excel XLSX to JSON conversion
ConvertDataApi convert_data_xml_edit_add_attribute_with_x_path POST /convert/xml/edit/xpath/add-attribute Adds an attribute to all XML nodes matching XPath expression
ConvertDataApi convert_data_xml_edit_add_child_with_x_path POST /convert/xml/edit/xpath/add-child Adds an XML node as a child to XML nodes matching XPath expression
ConvertDataApi convert_data_xml_edit_remove_all_child_nodes_with_x_path POST /convert/xml/edit/xpath/remove-all-children Removes, deletes all children of nodes matching XPath expression, but does not remove the nodes
ConvertDataApi convert_data_xml_edit_replace_with_x_path POST /convert/xml/edit/xpath/replace Replaces XML nodes matching XPath expression with new node
ConvertDataApi convert_data_xml_edit_set_value_with_x_path POST /convert/xml/edit/xpath/set-value Sets the value contents of XML nodes matching XPath expression
ConvertDataApi convert_data_xml_filter_with_x_path POST /convert/xml/select/xpath Filter, select XML nodes using XPath expression, get results
ConvertDataApi convert_data_xml_query_with_x_query POST /convert/xml/query/xquery Query an XML file using XQuery query, get results
ConvertDataApi convert_data_xml_query_with_x_query_multi POST /convert/xml/query/xquery/multi Query multiple XML files using XQuery query, get results
ConvertDataApi convert_data_xml_remove_with_x_path POST /convert/xml/edit/xpath/remove Remove, delete XML nodes and items matching XPath expression
ConvertDataApi convert_data_xml_to_json POST /convert/xml/to/json Convert XML to JSON conversion
ConvertDataApi convert_data_xml_transform_with_xslt_to_xml POST /convert/xml/transform/xslt/to/xml Transform XML document file with XSLT into a new XML document
ConvertDocumentApi convert_document_autodetect_get_info POST /convert/autodetect/get-info Get document type information
ConvertDocumentApi convert_document_autodetect_to_jpg POST /convert/autodetect/to/jpg Convert Document to JPG/JPEG image array
ConvertDocumentApi convert_document_autodetect_to_pdf POST /convert/autodetect/to/pdf Convert Document to PDF
ConvertDocumentApi convert_document_autodetect_to_png_array POST /convert/autodetect/to/png Convert Document to PNG array
ConvertDocumentApi convert_document_autodetect_to_thumbnail POST /convert/autodetect/to/thumbnail Convert File to Thumbnail Image
ConvertDocumentApi convert_document_autodetect_to_thumbnails_advanced POST /convert/autodetect/to/thumbnail/advanced Convert File to Thumbnail Image Object
ConvertDocumentApi convert_document_autodetect_to_txt POST /convert/autodetect/to/txt Convert Document to Text (txt)
ConvertDocumentApi convert_document_csv_multi_to_xlsx POST /convert/csv/multi/to/xlsx Convert Multiple CSV Files into a Single XLSX Spreadsheet
ConvertDocumentApi convert_document_csv_to_html POST /convert/csv/to/html Convert CSV to HTML document
ConvertDocumentApi convert_document_csv_to_pdf POST /convert/csv/to/pdf Convert CSV to PDF document
ConvertDocumentApi convert_document_csv_to_xlsx POST /convert/csv/to/xlsx Convert CSV to Excel XLSX Spreadsheet
ConvertDocumentApi convert_document_doc_to_docx POST /convert/doc/to/docx Convert Word DOC (97-03) Document to DOCX
ConvertDocumentApi convert_document_doc_to_pdf POST /convert/doc/to/pdf Convert Word DOC (97-03) Document to PDF
ConvertDocumentApi convert_document_doc_to_txt POST /convert/doc/to/txt Convert Word DOC (97-03) Document to Text (txt)
ConvertDocumentApi convert_document_docx_to_html POST /convert/docx/to/html Convert Word DOCX Document to HTML Document
ConvertDocumentApi convert_document_docx_to_jpg POST /convert/docx/to/jpg Convert Word DOCX Document to JPG/JPEG image array
ConvertDocumentApi convert_document_docx_to_pdf POST /convert/docx/to/pdf Convert Word DOCX Document to PDF
ConvertDocumentApi convert_document_docx_to_png POST /convert/docx/to/png Convert Word DOCX Document to PNG image array
ConvertDocumentApi convert_document_docx_to_rtf POST /convert/docx/to/rtf Convert Word DOCX Document to RTF
ConvertDocumentApi convert_document_docx_to_txt POST /convert/docx/to/txt Convert Word DOCX Document to Text (txt)
ConvertDocumentApi convert_document_eml_to_html POST /convert/eml/to/html Convert Email EML file to HTML string
ConvertDocumentApi convert_document_eml_to_jpg POST /convert/eml/to/jpg Convert Email EML file to JPG/JPEG image array
ConvertDocumentApi convert_document_eml_to_pdf POST /convert/eml/to/pdf Convert Email EML file to PDF document
ConvertDocumentApi convert_document_eml_to_png POST /convert/eml/to/png Convert Email EML file to PNG image array
ConvertDocumentApi convert_document_get_file_type_icon POST /convert/autodetect/get-icon Get PNG icon file for the file extension
ConvertDocumentApi convert_document_get_file_type_icon_advanced POST /convert/autodetect/get-icon/advanced Get PNG icon byte array for the file extension
ConvertDocumentApi convert_document_html_to_pdf POST /convert/html/to/pdf Convert HTML document file to PDF Document
ConvertDocumentApi convert_document_html_to_png POST /convert/html/to/png Convert HTML document file to PNG image array
ConvertDocumentApi convert_document_html_to_txt POST /convert/html/to/txt HTML Document file to Text (txt)
ConvertDocumentApi convert_document_keynote_to_jpg POST /convert/key/to/jpg Convert Keynote Presentation (KEY) to JPG/JPEG image array
ConvertDocumentApi convert_document_keynote_to_pdf POST /convert/key/to/pdf Convert Keynote Presentation (KEY) to PDF
ConvertDocumentApi convert_document_keynote_to_png POST /convert/key/to/png Convert Keynote Presentation (KEY) to PNG image array
ConvertDocumentApi convert_document_keynote_to_pptx POST /convert/key/to/pptx Convert Keynote Presentation (KEY) to PPTX
ConvertDocumentApi convert_document_msg_to_html POST /convert/msg/to/html Convert Email MSG file to HTML string
ConvertDocumentApi convert_document_msg_to_jpg POST /convert/msg/to/jpg Convert Email MSG file to JPG/JPEG image array
ConvertDocumentApi convert_document_msg_to_pdf POST /convert/msg/to/pdf Convert Email MSG file to PDF document
ConvertDocumentApi convert_document_msg_to_png POST /convert/msg/to/png Convert Email MSG file to PNG image array
ConvertDocumentApi convert_document_odp_to_jpg POST /convert/odp/to/jpg Convert ODP Presentation to JPG/JPEG image array
ConvertDocumentApi convert_document_odp_to_pdf POST /convert/odp/to/pdf Convert ODP Presentation to PDF
ConvertDocumentApi convert_document_odp_to_png POST /convert/odp/to/png Convert ODP Presentation to PNG image array
ConvertDocumentApi convert_document_odp_to_pptx POST /convert/odp/to/pptx Convert ODP Presentation to PPTX
ConvertDocumentApi convert_document_ods_to_jpg POST /convert/ods/to/jpg Convert ODS Spreadsheet to JPG/JPEG image array
ConvertDocumentApi convert_document_ods_to_pdf POST /convert/ods/to/pdf Convert ODS Spreadsheet to PDF
ConvertDocumentApi convert_document_ods_to_png POST /convert/ods/to/png Convert ODS Spreadsheet to PNG image array
ConvertDocumentApi convert_document_ods_to_xlsx POST /convert/ods/to/xlsx Convert ODS Spreadsheet to XLSX
ConvertDocumentApi convert_document_odt_to_docx POST /convert/odt/to/docx Convert ODT Text File to Word DOCX
ConvertDocumentApi convert_document_odt_to_jpg POST /convert/odt/to/jpg Convert ODT Text File to JPG/JPEG image array
ConvertDocumentApi convert_document_odt_to_pdf POST /convert/odt/to/pdf Convert ODT Text File to PDF
ConvertDocumentApi convert_document_odt_to_png POST /convert/odt/to/png Convert ODT Text File to PNG image array
ConvertDocumentApi convert_document_pdf_to_docx POST /convert/pdf/to/docx Convert PDF to Word DOCX Document
ConvertDocumentApi convert_document_pdf_to_docx_rasterize POST /convert/pdf/to/docx/rasterize Convert PDF to Word DOCX Document based on rasterized version of the PDF
ConvertDocumentApi convert_document_pdf_to_jpg POST /convert/pdf/to/jpg Convert PDF to JPG/JPEG image array
ConvertDocumentApi convert_document_pdf_to_png_array POST /convert/pdf/to/png Convert PDF to PNG Image Array
ConvertDocumentApi convert_document_pdf_to_png_single POST /convert/pdf/to/png/merge-single Convert PDF to Single PNG image
ConvertDocumentApi convert_document_pdf_to_pptx POST /convert/pdf/to/pptx Convert PDF to PowerPoint PPTX Presentation
ConvertDocumentApi convert_document_pdf_to_txt POST /convert/pdf/to/txt Convert PDF Document to Text (txt)
ConvertDocumentApi convert_document_png_array_to_pdf POST /convert/png/to/pdf Convert PNG Array to PDF
ConvertDocumentApi convert_document_ppt_to_pdf POST /convert/ppt/to/pdf Convert PowerPoint PPT (97-03) Presentation to PDF
ConvertDocumentApi convert_document_ppt_to_pptx POST /convert/ppt/to/pptx Convert PowerPoint PPT (97-03) Presentation to PPTX
ConvertDocumentApi convert_document_pptx_to_pdf POST /convert/pptx/to/pdf Convert PowerPoint PPTX Presentation to PDF
ConvertDocumentApi convert_document_pptx_to_png POST /convert/pptx/to/png Convert PowerPoint PPTX to PNG image array
ConvertDocumentApi convert_document_pptx_to_txt POST /convert/pptx/to/txt Convert PowerPoint PPTX Presentation to Text (txt)
ConvertDocumentApi convert_document_rtf_to_docx POST /convert/rtf/to/docx Convert Rich Text Format RTF to DOCX Document
ConvertDocumentApi convert_document_rtf_to_html POST /convert/rtf/to/html Convert Rich Text Format RTF to HTML Document
ConvertDocumentApi convert_document_rtf_to_jpg POST /convert/rtf/to/jpg Convert Rich Text Format RTF to JPG/JPEG image array
ConvertDocumentApi convert_document_rtf_to_pdf POST /convert/rtf/to/pdf Convert Rich Text Format RTF to PDF
ConvertDocumentApi convert_document_rtf_to_png POST /convert/rtf/to/png Convert Rich Text Format RTF to PNG image array
ConvertDocumentApi convert_document_xls_to_csv POST /convert/xls/to/csv Convert Excel XLS (97-03) Spreadsheet to CSV
ConvertDocumentApi convert_document_xls_to_pdf POST /convert/xls/to/pdf Convert Excel XLS (97-03) Spreadsheet to PDF
ConvertDocumentApi convert_document_xls_to_xlsx POST /convert/xls/to/xlsx Convert Excel XLS (97-03) Spreadsheet to XLSX
ConvertDocumentApi convert_document_xlsx_to_csv POST /convert/xlsx/to/csv Convert Excel XLSX Spreadsheet to CSV, Single Worksheet
ConvertDocumentApi convert_document_xlsx_to_csv_multi POST /convert/xlsx/to/csv/multi Convert Excel XLSX Spreadsheet to CSV, Multiple Worksheets
ConvertDocumentApi convert_document_xlsx_to_html POST /convert/xlsx/to/html Convert Excel XLSX Spreadsheet to HTML Document
ConvertDocumentApi convert_document_xlsx_to_pdf POST /convert/xlsx/to/pdf Convert Excel XLSX Spreadsheet to PDF
ConvertDocumentApi convert_document_xlsx_to_png POST /convert/xlsx/to/png Convert Excel XLSX spreadsheet to PNG image array
ConvertDocumentApi convert_document_xlsx_to_txt POST /convert/xlsx/to/txt Convert Excel XLSX Spreadsheet to Text (txt)
ConvertImageApi convert_image_get_image_info POST /convert/image/get-info Get information about an image
ConvertImageApi convert_image_image_format_convert POST /convert/image/{format1}/to/{format2} Image format conversion
ConvertImageApi convert_image_image_set_dpi POST /convert/image/set-dpi/{dpi} Change image DPI
ConvertImageApi convert_image_multipage_image_format_convert POST /convert/image-multipage/{format1}/to/{format2} Multi-page image format conversion
ConvertTemplateApi convert_template_apply_docx_template POST /convert/template/docx/apply Apply Word DOCX template
ConvertTemplateApi convert_template_apply_html_template POST /convert/template/html/apply Apply HTML template
ConvertWebApi convert_web_html_to_docx POST /convert/html/to/docx Convert HTML to Word DOCX Document
ConvertWebApi convert_web_html_to_pdf POST /convert/web/html/to/pdf Convert HTML string to PDF
ConvertWebApi convert_web_html_to_png POST /convert/web/html/to/png Convert HTML string to PNG screenshot
ConvertWebApi convert_web_html_to_txt POST /convert/web/html/to/txt Convert HTML string to text (txt)
ConvertWebApi convert_web_md_to_html POST /convert/web/md/to/html Convert Markdown to HTML
ConvertWebApi convert_web_url_to_pdf POST /convert/web/url/to/pdf Convert a URL to PDF
ConvertWebApi convert_web_url_to_screenshot POST /convert/web/url/to/screenshot Take screenshot of URL
ConvertWebApi convert_web_url_to_txt POST /convert/web/url/to/txt Convert website URL page to text (txt)
EditDocumentApi edit_document_begin_editing POST /convert/edit/begin-editing Begin editing a document
EditDocumentApi edit_document_docx_body POST /convert/edit/docx/get-body Get body from a Word DOCX document
EditDocumentApi edit_document_docx_create_blank_document POST /convert/edit/docx/create/blank Create a blank Word DOCX document
EditDocumentApi edit_document_docx_delete_pages POST /convert/edit/docx/delete-pages Delete, remove pages from a Word DOCX document
EditDocumentApi edit_document_docx_delete_table_row POST /convert/edit/docx/delete-table-row Deletes a table row in an existing table in a Word DOCX document
EditDocumentApi edit_document_docx_delete_table_row_range POST /convert/edit/docx/delete-table-row/range Deletes a range of multiple table rows in an existing table in a Word DOCX document
EditDocumentApi edit_document_docx_find_paragraph POST /convert/edit/docx/find/paragraph Find matching paragraphs in a Word DOCX document
EditDocumentApi edit_document_docx_get_comments POST /convert/edit/docx/get-comments/flat-list Get comments from a Word DOCX document as a flat list
EditDocumentApi edit_document_docx_get_comments_hierarchical POST /convert/edit/docx/get-comments/hierarchical Get comments from a Word DOCX document hierarchically
EditDocumentApi edit_document_docx_get_headers_and_footers POST /convert/edit/docx/get-headers-and-footers Get content of a footer from a Word DOCX document
EditDocumentApi edit_document_docx_get_images POST /convert/edit/docx/get-images Get images from a Word DOCX document
EditDocumentApi edit_document_docx_get_sections POST /convert/edit/docx/get-sections Get sections from a Word DOCX document
EditDocumentApi edit_document_docx_get_styles POST /convert/edit/docx/get-styles Get styles from a Word DOCX document
EditDocumentApi edit_document_docx_get_table_by_index POST /convert/edit/docx/get-table/by-index Get a specific table by index in a Word DOCX document
EditDocumentApi edit_document_docx_get_table_row POST /convert/edit/docx/get-table-row Gets the contents of an existing table row in an existing table in a Word DOCX document
EditDocumentApi edit_document_docx_get_tables POST /convert/edit/docx/get-tables Get all tables in Word DOCX document
EditDocumentApi edit_document_docx_insert_comment_on_paragraph POST /convert/edit/docx/insert-comment/on/paragraph Insert a new comment into a Word DOCX document attached to a paragraph
EditDocumentApi edit_document_docx_insert_image POST /convert/edit/docx/insert-image Insert image into a Word DOCX document
EditDocumentApi edit_document_docx_insert_paragraph POST /convert/edit/docx/insert-paragraph Insert a new paragraph into a Word DOCX document
EditDocumentApi edit_document_docx_insert_table POST /convert/edit/docx/insert-table Insert a new table into a Word DOCX document
EditDocumentApi edit_document_docx_insert_table_row POST /convert/edit/docx/insert-table-row Insert a new row into an existing table in a Word DOCX document
EditDocumentApi edit_document_docx_pages POST /convert/edit/docx/get-pages Get pages and content from a Word DOCX document
EditDocumentApi edit_document_docx_remove_headers_and_footers POST /convert/edit/docx/remove-headers-and-footers Remove headers and footers from Word DOCX document
EditDocumentApi edit_document_docx_remove_object POST /convert/edit/docx/remove-object Delete any object in a Word DOCX document
EditDocumentApi edit_document_docx_replace POST /convert/edit/docx/replace-all Replace string in Word DOCX document
EditDocumentApi edit_document_docx_replace_multi POST /convert/edit/docx/replace-all/multi Replace multiple strings in Word DOCX document
EditDocumentApi edit_document_docx_replace_paragraph POST /convert/edit/docx/replace/paragraph Replace matching paragraphs in a Word DOCX document
EditDocumentApi edit_document_docx_set_footer POST /convert/edit/docx/set-footer Set the footer in a Word DOCX document
EditDocumentApi edit_document_docx_set_footer_add_page_number POST /convert/edit/docx/set-footer/add-page-number Add page number to footer in a Word DOCX document
EditDocumentApi edit_document_docx_set_header POST /convert/edit/docx/set-header Set the header in a Word DOCX document
EditDocumentApi edit_document_docx_update_table_cell POST /convert/edit/docx/update-table-cell Update, set contents of a table cell in an existing table in a Word DOCX document
EditDocumentApi edit_document_docx_update_table_row POST /convert/edit/docx/update-table-row Update, set contents of a table row in an existing table in a Word DOCX document
EditDocumentApi edit_document_finish_editing POST /convert/edit/finish-editing Finish editing document, and download result from document editing
EditDocumentApi edit_document_pptx_delete_slides POST /convert/edit/pptx/delete-slides Delete, remove slides from a PowerPoint PPTX presentation document
EditDocumentApi edit_document_pptx_replace POST /convert/edit/pptx/replace-all Replace string in PowerPoint PPTX presentation
EditDocumentApi edit_document_xlsx_append_row POST /convert/edit/xlsx/append-row Append row to a Excel XLSX spreadsheet, worksheet
EditDocumentApi edit_document_xlsx_clear_cell_by_index POST /convert/edit/xlsx/clear-cell/by-index Clear cell contents in an Excel XLSX spreadsheet, worksheet by index
EditDocumentApi edit_document_xlsx_clear_row POST /convert/edit/xlsx/clear-row Clear row from a Excel XLSX spreadsheet, worksheet
EditDocumentApi edit_document_xlsx_create_blank_spreadsheet POST /convert/edit/xlsx/create/blank Create a blank Excel XLSX spreadsheet
EditDocumentApi edit_document_xlsx_create_spreadsheet_from_data POST /convert/edit/xlsx/create/from/data Create a new Excel XLSX spreadsheet from column and row data
EditDocumentApi edit_document_xlsx_delete_worksheet POST /convert/edit/xlsx/delete-worksheet Delete, remove worksheet from an Excel XLSX spreadsheet document
EditDocumentApi edit_document_xlsx_disable_shared_workbook POST /convert/edit/xlsx/configuration/disable-shared-workbook Disable Shared Workbook (legacy) in Excel XLSX spreadsheet
EditDocumentApi edit_document_xlsx_enable_shared_workbook POST /convert/edit/xlsx/configuration/enable-shared-workbook Enable Shared Workbook (legacy) in Excel XLSX spreadsheet
EditDocumentApi edit_document_xlsx_get_cell_by_identifier POST /convert/edit/xlsx/get-cell/by-identifier Get cell from an Excel XLSX spreadsheet, worksheet by cell identifier
EditDocumentApi edit_document_xlsx_get_cell_by_index POST /convert/edit/xlsx/get-cell/by-index Get cell from an Excel XLSX spreadsheet, worksheet by index
EditDocumentApi edit_document_xlsx_get_columns POST /convert/edit/xlsx/get-columns Get columns from a Excel XLSX spreadsheet, worksheet
EditDocumentApi edit_document_xlsx_get_images POST /convert/edit/xlsx/get-images Get images from a Excel XLSX spreadsheet, worksheet
EditDocumentApi edit_document_xlsx_get_rows_and_cells POST /convert/edit/xlsx/get-rows-and-cells Get rows and cells from a Excel XLSX spreadsheet, worksheet
EditDocumentApi edit_document_xlsx_get_specific_row POST /convert/edit/xlsx/get-specific-row Get a specific row from a Excel XLSX spreadsheet, worksheet by path
EditDocumentApi edit_document_xlsx_get_styles POST /convert/edit/xlsx/get-styles Get styles from a Excel XLSX spreadsheet, worksheet
EditDocumentApi edit_document_xlsx_get_worksheets POST /convert/edit/xlsx/get-worksheets Get worksheets from a Excel XLSX spreadsheet
EditDocumentApi edit_document_xlsx_insert_worksheet POST /convert/edit/xlsx/insert-worksheet Insert a new worksheet into an Excel XLSX spreadsheet
EditDocumentApi edit_document_xlsx_rename_worksheet POST /convert/edit/xlsx/rename-worksheet Rename a specific worksheet in a Excel XLSX spreadsheet
EditDocumentApi edit_document_xlsx_set_cell_by_identifier POST /convert/edit/xlsx/set-cell/by-identifier Set, update cell contents in an Excel XLSX spreadsheet, worksheet by cell identifier
EditDocumentApi edit_document_xlsx_set_cell_by_index POST /convert/edit/xlsx/set-cell/by-index Set, update cell contents in an Excel XLSX spreadsheet, worksheet by index
EditHtmlApi edit_html_html_append_heading POST /convert/edit/html/append/heading Append a Heading to an HTML Document
EditHtmlApi edit_html_html_append_image_from_url POST /convert/edit/html/append/image/from-url Append an Image to an HTML Document from a URL
EditHtmlApi edit_html_html_append_image_inline POST /convert/edit/html/append/image/inline Append a Base64 Inline Image to an HTML Document
EditHtmlApi edit_html_html_append_paragraph POST /convert/edit/html/append/paragraph Append a Paragraph to an HTML Document
EditPdfApi edit_pdf_add_annotations POST /convert/edit/pdf/annotations/add-item Add one or more PDF annotations, comments in the PDF document
EditPdfApi edit_pdf_decrypt POST /convert/edit/pdf/decrypt Decrypt and password-protect a PDF
EditPdfApi edit_pdf_delete_pages POST /convert/edit/pdf/pages/delete Remove, delete pages from a PDF document
EditPdfApi edit_pdf_encrypt POST /convert/edit/pdf/encrypt Encrypt and password-protect a PDF
EditPdfApi edit_pdf_get_annotations POST /convert/edit/pdf/annotations/list Get PDF annotations, including comments in the document
EditPdfApi edit_pdf_get_form_fields POST /convert/edit/pdf/form/get-fields Gets PDF Form fields and values
EditPdfApi edit_pdf_get_metadata POST /convert/edit/pdf/get-metadata Get PDF document metadata
EditPdfApi edit_pdf_get_pdf_text_by_pages POST /convert/edit/pdf/pages/get-text Get text in a PDF document by page
EditPdfApi edit_pdf_insert_pages POST /convert/edit/pdf/pages/insert Insert, copy pages from one PDF document into another
EditPdfApi edit_pdf_rasterize POST /convert/edit/pdf/rasterize Rasterize a PDF to an image-based PDF
EditPdfApi edit_pdf_remove_all_annotations POST /convert/edit/pdf/annotations/remove-all Remove all PDF annotations, including comments in the document
EditPdfApi edit_pdf_remove_annotation_item POST /convert/edit/pdf/annotations/remove-item Remove a specific PDF annotation, comment in the document
EditPdfApi edit_pdf_rotate_all_pages POST /convert/edit/pdf/pages/rotate/all Rotate all pages in a PDF document
EditPdfApi edit_pdf_rotate_page_range POST /convert/edit/pdf/pages/rotate/page-range Rotate a range, subset of pages in a PDF document
EditPdfApi edit_pdf_set_form_fields POST /convert/edit/pdf/form/set-fields Sets ands fills PDF Form field values
EditPdfApi edit_pdf_set_metadata POST /convert/edit/pdf/set-metadata Sets PDF document metadata
EditPdfApi edit_pdf_set_permissions POST /convert/edit/pdf/encrypt/set-permissions Encrypt, password-protect and set restricted permissions on a PDF
EditPdfApi edit_pdf_watermark_text POST /convert/edit/pdf/watermark/text Add a text watermark to a PDF
EditTextApi edit_text_base64_decode POST /convert/edit/text/encoding/base64/decode Base 64 decode, convert base 64 string to binary content
EditTextApi edit_text_base64_detect POST /convert/edit/text/encoding/base64/detect Detect, check if text string is base 64 encoded
EditTextApi edit_text_base64_encode POST /convert/edit/text/encoding/base64/encode Base 64 encode, convert binary or file data to a text string
EditTextApi edit_text_change_line_endings POST /convert/edit/text/line-endings/change Set, change line endings of a text file
EditTextApi edit_text_detect_line_endings POST /convert/edit/text/line-endings/detect Detect line endings of a text file
EditTextApi edit_text_find_regex POST /convert/edit/text/find/regex Find a regular expression regex in text input
EditTextApi edit_text_find_simple POST /convert/edit/text/find/string Find a string in text input
EditTextApi edit_text_remove_all_whitespace POST /convert/edit/text/remove/whitespace/all Remove whitespace from text string
EditTextApi edit_text_remove_html POST /convert/edit/text/remove/html Remove HTML from text string
EditTextApi edit_text_replace_regex POST /convert/edit/text/replace/regex Replace a string in text with a regex regular expression string
EditTextApi edit_text_replace_simple POST /convert/edit/text/replace/string Replace a string in text with another string value
EditTextApi edit_text_text_encoding_detect POST /convert/edit/text/encoding/detect Detect text encoding of file
EditTextApi edit_text_trim_whitespace POST /convert/edit/text/remove/whitespace/trim Trim leading and trailing whitespace from text string
MergeDocumentApi merge_document_docx POST /convert/merge/docx Merge Two Word DOCX Together
MergeDocumentApi merge_document_docx_multi POST /convert/merge/docx/multi Merge Multple Word DOCX Together
MergeDocumentApi merge_document_pdf POST /convert/merge/pdf Merge Two PDF Files Together
MergeDocumentApi merge_document_pdf_multi POST /convert/merge/pdf/multi Merge Multple PDF Files Together
MergeDocumentApi merge_document_png POST /convert/merge/png/vertical Merge Two PNG Files Together
MergeDocumentApi merge_document_png_multi POST /convert/merge/png/vertical/multi Merge Multple PNG Files Together
MergeDocumentApi merge_document_pptx POST /convert/merge/pptx Merge Two PowerPoint PPTX Together
MergeDocumentApi merge_document_pptx_multi POST /convert/merge/pptx/multi Merge Multple PowerPoint PPTX Together
MergeDocumentApi merge_document_txt POST /convert/merge/txt Merge Two Text (TXT) Files Together
MergeDocumentApi merge_document_txt_multi POST /convert/merge/txt/multi Merge Multple Text (TXT) Files Together
MergeDocumentApi merge_document_xlsx POST /convert/merge/xlsx Merge Two Excel XLSX Together
MergeDocumentApi merge_document_xlsx_multi POST /convert/merge/xlsx/multi Merge Multple Excel XLSX Together
SplitDocumentApi split_document_docx POST /convert/split/docx Split a single Word Document DOCX into Separate Documents by Page
SplitDocumentApi split_document_pdf_by_page POST /convert/split/pdf Split a PDF file into separate PDF files, one per page
SplitDocumentApi split_document_pptx POST /convert/split/pptx Split a single PowerPoint Presentation PPTX into Separate Slides
SplitDocumentApi split_document_txt_by_line POST /convert/split/txt/by-line Split a single Text file (txt) into lines
SplitDocumentApi split_document_txt_by_string POST /convert/split/txt/by-string Split a single Text file (txt) by a string delimiter
SplitDocumentApi split_document_xlsx POST /convert/split/xlsx Split a single Excel XLSX into Separate Worksheets
TransformDocumentApi transform_document_docx_replace POST /convert/transform/docx/replace-all Replace string in Word DOCX document
TransformDocumentApi transform_document_pptx_replace POST /convert/transform/pptx/replace-all Replace string in PowerPoint PPTX presentation
ValidateDocumentApi validate_document_autodetect_validation POST /convert/validate/autodetect Autodetect content type and validate
ValidateDocumentApi validate_document_csv_validation POST /convert/validate/csv Validate a CSV file document (CSV)
ValidateDocumentApi validate_document_docx_validation POST /convert/validate/docx Validate a Word document (DOCX)
ValidateDocumentApi validate_document_eml_validation POST /convert/validate/eml Validate if an EML file is executable
ValidateDocumentApi validate_document_executable_validation POST /convert/validate/executable Validate if a file is executable
ValidateDocumentApi validate_document_g_zip_validation POST /convert/validate/gzip Validate a GZip Archive file (gzip or gz)
ValidateDocumentApi validate_document_json_validation POST /convert/validate/json Validate a JSON file
ValidateDocumentApi validate_document_msg_validation POST /convert/validate/msg Validate if an MSG file is executable
ValidateDocumentApi validate_document_pdf_validation POST /convert/validate/pdf Validate a PDF document file
ValidateDocumentApi validate_document_pptx_validation POST /convert/validate/pptx Validate a PowerPoint presentation (PPTX)
ValidateDocumentApi validate_document_rar_validation POST /convert/validate/rar Validate a RAR Archive file (RAR)
ValidateDocumentApi validate_document_tar_validation POST /convert/validate/tar Validate a TAR Tarball Archive file (TAR)
ValidateDocumentApi validate_document_xlsx_validation POST /convert/validate/xlsx Validate a Excel document (XLSX)
ValidateDocumentApi validate_document_xml_validation POST /convert/validate/xml Validate an XML file
ValidateDocumentApi validate_document_zip_validation POST /convert/validate/zip Validate a Zip Archive file (zip)
ViewerToolsApi viewer_tools_create_simple POST /convert/viewer/create/web/simple Create a web-based viewer
ZipArchiveApi zip_archive_zip_create POST /convert/archive/zip/create Compress files to create a new zip archive
ZipArchiveApi zip_archive_zip_create_advanced POST /convert/archive/zip/create/advanced Compress files and folders to create a new zip archive with advanced options
ZipArchiveApi zip_archive_zip_decrypt POST /convert/archive/zip/decrypt Decrypt and remove password protection on a zip file
ZipArchiveApi zip_archive_zip_encrypt_advanced POST /convert/archive/zip/encrypt/advanced Encrypt and password protect a zip file
ZipArchiveApi zip_archive_zip_extract POST /convert/archive/zip/extract Extract, decompress files and folders from a zip archive

Documentation For Models

Documentation For Authorization

Apikey

  • Type: API key
  • API key parameter name: Apikey
  • Location: HTTP header

Author

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

cloudmersive_convert_api_client-3.0.4.tar.gz (199.4 kB view hashes)

Uploaded Source

Supported by

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